Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. {% extends "blog/base.html" %}
  2. {% load comments markup %}
  3.  
  4. {% block title %}{{ post.title }}{% endblock %}
  5. {% block subtitle %}{{ post.title }}{% endblock %}
  6.  
  7. {% block content %}
  8. <div class="post">
  9. <div class="entry">{{ post.content|markdown:"safe,codehilite" }}</div>
  10.  
  11. <p>Posted on: <a href="{% url blog.archive_day post.pub_date|date:"Y" post.pub_date|date:"M"|lower post.pub_date|date:"d" %}">{{ post.pub_date|date:"Y M d" }}</a> {% if post.categorys %} in{% for tag in post.categorys %} <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>{% endfor %}.{% endif %}</p>
  12. </div>
  13.  
  14. {% if post.enable_comments %}
  15. {% load comments %}
  16. <h3>Comments</h3>
  17. {% render_comment_list for post %}
  18. {% render_comment_form for post %}
  19. {% endif %}
  20. {% endblock %}
Add Comment
Please, Sign In to add comment