Skip to content

Instantly share code, notes, and snippets.

@igm
Created July 7, 2011 15:17
Show Gist options
  • Save igm/1069737 to your computer and use it in GitHub Desktop.
Save igm/1069737 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block content %}
<div id="part-content">
{% if posts %}
{% for post in posts %}
<div id="post-{{post.id}}" class="post-home">
<div class="post-title">
<h1><a href="{{post.link}}" rel="bookmark">{{post.title}}</a></h1>
</div>
<div class="post-content">{{post.preview}}</div>
<div class="post-time">{{post.date|date:"HH:mm yyyy-MM-dd"}}</div>
</div>
{% endfor %}
</div>
{% else %}
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
{% endif %}
</div>
{% include "sidebar1.html" %}
{% include "sidebar2.html" %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment