Skip to content

Instantly share code, notes, and snippets.

@econchick
Created November 16, 2012 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save econchick/4085210 to your computer and use it in GitHub Desktop.
Save econchick/4085210 to your computer and use it in GitHub Desktop.
templates/blog/post.html
{% extends "base.html" %}
{% block content %}
<div class="main">
<!-- Posts -->
<ul>
<div class="title">{{ post.title }}</div>
<ul>
<div class="time">{{ post.created }}</div>
<div class="body">{{ post.body|linebreaks }}</div>
</ul>
<a href="{% url home %}">Back to Blog Frontpage</a>
</ul>
<!-- Comments -->
<!-- If you have a Disqus account, copy & paste the Javascript code they gave you here. -->
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment