1234567891011121314151617181920212223242526272829 |
- {% extends "/html/base.html" %}
- {% block content %}
- <div id="post">
- {% for post in posts %}
- <div class="post-header">
- <h1>{{post.title}}</h1>
- <div id="post-meta">
- {% if post.author %}
- <div class="author">{{post.author}}</div>
- {% endif %}
- <strong>{{post.date|date:longDate}}</strong>
- </div>
- </div>
- {{post.content|safe}}
- <br/>
- <a class="button" href="{{post.uri}}">Continue reading →</a>
- <hr>
- {% endfor %}
- <div id="prev-next">
- {% if prev-uri %}
- <a class="button left" href="{{prev-uri}}">« Prev</a>
- {% endif %}
- {% if next-uri %}
- <a class="button right" href="{{next-uri}}">Next »</a>
- {% endif %}
- </div>
- </div>
- {% endblock %}
|