21 lines
570 B
HTML
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 %}
|