Initial commit.
This commit is contained in:
commit
b2e2fde818
36 changed files with 1475 additions and 0 deletions
20
themes/blue/html/home.html
Normal file
20
themes/blue/html/home.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends "/html/base.html" %}
|
||||
{% block content %}
|
||||
<div id="post">
|
||||
{% include "/html/post-content.html" %}
|
||||
{% if disqus? %}
|
||||
<div id="comments">
|
||||
<a href="{{post.uri}}#disqus_thread">View Comments</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div id="prev-next">
|
||||
{% if post.prev %}
|
||||
<a href="{{post.prev.uri}}">« {{post.prev.title}}</a>
|
||||
{% endif %}
|
||||
{% if post.next %}
|
||||
<a class="right" href="{{post.next.uri}}">{{post.next.title}} »</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue