diff --git a/templates/link-page.html b/templates/link-page.html
index 402906f..4130bc1 100644
--- a/templates/link-page.html
+++ b/templates/link-page.html
@@ -6,7 +6,8 @@
{%- block content %}
-
+
+
{%- if page.extra.comment %}{{ page.extra.comment }}
{% endif %}
{{- page.content | safe }}
{%- endblock content %}
diff --git a/templates/links.html b/templates/links.html
index 5eb021e..aa52dd1 100644
--- a/templates/links.html
+++ b/templates/links.html
@@ -10,19 +10,19 @@
{%- for page in english_section.pages %}
-
- {%- if page.content %}{{ page.date }}
- {%- else %}
+ {%- if page.content -%}
+ {%- set portuguese_page = get_page(path="links/" ~ page.slug ~ ".pt.md") %}
+
+ {%- else %}
- {%- endif %}
+ {%- endif -%}
{{ page.title }}
- {%- if page.content %}
- {%- set portuguese_page = get_page(path="links/" ~ page.slug ~ ".pt.md") %}
- {%- if lang == "pt" %}
- {{ portuguese_page.content | replace(from="
", to="") | safe }}
- {%- else %}
- {{ page.content | replace(from="", to="") | safe }}
- {%- endif %}
- {%- endif %}
{%- endfor %}