12 lines
592 B
HTML
12 lines
592 B
HTML
{% extends "content.html" %}
|
|
|
|
{%- block content %}
|
|
<div class="link-box">
|
|
<h1 class="link-title"><a href="{{ page.extra.url }}">{{ page.title }}</a></h1>
|
|
<p class="link-data"><span class="link-author">by {{ page.authors | join(sep=", ") }}</span>
|
|
<time class="link-date"><strong>{% if lang == "pt" %}Linkado{% else %}Linked{% endif %} {{ page.date | date(format="%Y-%m-%d %H:%M:%S") }}</strong></time></p>
|
|
</div>
|
|
|
|
{%- if page.extra.comment %}<p>{{ page.extra.comment }}</p>{% endif %}
|
|
{{- page.content | safe }}
|
|
{%- endblock content %}
|