Files
pelican-hyde/templates/index.html
T
José Guilherme Vanz f946b964a6 Base pelican-hyde theme
2015-10-25 02:01:30 -02:00

25 lines
690 B
HTML

{% 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 %}