post-content.html 611 B

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