post-content.html 559 B

1234567891011121314151617181920212223
  1. <div class="post-header">
  2. <div id="post-meta" class="row">
  3. <strong>{{post.date|date:longDate}}</strong>
  4. {% if post.author %}
  5. <span class="col-lg-6 right">By: {{post.author}}</span>
  6. {% endif %}
  7. </div>
  8. <h1>{{post.title}}</h1>
  9. </div>
  10. <div>
  11. {% if post.toc %}{{post.toc|safe}}{% endif %}
  12. {{post.content|safe}}
  13. </div>
  14. {% if post.tags|not-empty %}
  15. <div id="post-tags">
  16. <br/>
  17. <b>Tags: </b>
  18. {% for tag in post.tags %}
  19. <a href="{{tag.uri}}">{{tag.name}}</a>
  20. {% endfor %}
  21. </div>
  22. {% endif %}
  23. <br/>