2020-02-16 13:50:12 +00:00
|
|
|
<div class="post-header">
|
|
|
|
<h1>{{post.title}}</h1>
|
|
|
|
<div class="row text-muted">
|
|
|
|
{% if post.author %}
|
|
|
|
<div class="col text-left">
|
|
|
|
Autor: {{post.author}}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="col text-right">
|
|
|
|
{{post.date|date:longDate}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% if post.tags|not-empty %}
|
|
|
|
<p class="text-muted">
|
|
|
|
Tags:
|
|
|
|
{% for tag in post.tags %}
|
2020-03-02 15:15:23 +00:00
|
|
|
<a class="link-muted" href="{{tag.uri}}">{{tag.name}}</a>{% if not forloop.last %}, {% endif %}
|
2020-02-16 13:50:12 +00:00
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{% if post.toc %}{{post.toc|safe}}{% endif %}
|
|
|
|
{{post.content|safe}}
|
|
|
|
</div>
|