nourhans-blog/themes/blue/html/post-content.html
2026-08-26 17:50:14 +01:00

21 lines
570 B
HTML

<div class="post-header">
<div id="post-meta" class="row">
<div class="col-lg-6">{{post.date|date:longDate}}</div>
{% if post.author %}
<span class="col-lg-6 right">By: {{post.author}}</span>
{% endif %}
</div>
<h1>{{post.title}}</h1>
</div>
<div>
{% if post.toc %}{{post.toc|safe}}{% endif %}
{{post.content|safe}}
</div>
{% if post.tags|not-empty %}
<div id="post-tags">
<b>Tags: </b>
{% for tag in post.tags|sort-by:name %}
<a href="{{tag.uri}}">| {{tag.name}} </a>
{% endfor %}|
</div>
{% endif %}