Guest User

Untitled

a guest
Jun 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {% extends "base.html" %}
  2.  
  3. {% block title %}{{ post.title }}{% endblock %}
  4.  
  5. {% block content %}
  6. <div class="post">
  7. <span class="meta">{{ post.pub_date|date:"Y M d" }}</span>
  8. <div class="entry">{{ post.content|markdown:"safe,codehilite" }}</div>
  9. </div>
  10.  
  11. {% if post.enable_comments %}
  12. {% load comments %}
  13. <h3>Comments</h3>
  14. {% render_comment_list for post %}
  15. {% render_comment_form for post %}
  16. {% endif %}
  17. {% endblock %}
  18.  
  19. ## extras
  20. <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>
Add Comment
Please, Sign In to add comment