Base pelican-hyde theme

This commit is contained in:
José Guilherme Vanz
2015-10-25 02:01:30 -02:00
parent 832c293396
commit f946b964a6
9 changed files with 890 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block content %}
<div class="posts">
{% for article in articles_page.object_list %}
<div class="post">
<h1 class="post-title" href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">
<a href="{{ SITEURL }}/{{ article.url }}#{{ article.slug }}">{{ article.title }}</a>
</h1>
<span class="post-date">{{ article.locale_date }}</span>
<p>
{{ article.summary }}
</p>
<a class="read-more" href="{{ article.url }}">Continue reading »</a>
</div>
{% endfor %}
</div>
<div class="pagination">
<span class="pagination-item older">Older</span>
<span class="pagination-item newer">Newer</span>
</div>
{% endblock %}