Initial commit.
This commit is contained in:
commit
b2e2fde818
36 changed files with 1475 additions and 0 deletions
28
themes/blue/html/previews.html
Normal file
28
themes/blue/html/previews.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{% extends "/html/base.html" %}
|
||||
{% block content %}
|
||||
<div id="post">
|
||||
{% for post in posts %}
|
||||
<div class="post-header">
|
||||
<a href="{{post.uri}}"><h2>{{post.title}}</h2></a>
|
||||
<div id="post-meta">
|
||||
{% if post.author %}
|
||||
<div class="author">{{post.author}}</div>
|
||||
{% endif %}
|
||||
<div class="date">{{post.date|date:longDate}}</div>
|
||||
</div>
|
||||
</div>
|
||||
{{post.content|safe}}
|
||||
<a href="{{post.uri}}">Continue reading →</a>
|
||||
<hr>
|
||||
{% endfor %}
|
||||
|
||||
<div id="prev-next">
|
||||
{% if prev-uri %}
|
||||
<a class="left" href="{{prev-uri}}">« Prev</a>
|
||||
{% endif %}
|
||||
{% if next-uri %}
|
||||
<a class="right" href="{{next-uri}}">Next »</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue