cryogen-bootstrap/resources/templates/themes/bootstrap4/html/includes/post-content.inc
2020-02-16 14:50:12 +01:00

26 lines
567 B
HTML

<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 %}
{{tag.name}}{% if not forloop.last %}, {% endif %}
{% endfor %}
</p>
{% endif %}
</div>
<div>
{% if post.toc %}{{post.toc|safe}}{% endif %}
{{post.content|safe}}
</div>