30 lines
690 B
HTML
30 lines
690 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block page_title %}Posts{% endblock %}
|
|
|
|
{% block content %}
|
|
{% set read_more = True %}
|
|
|
|
<h1>Latest Posts</h1>
|
|
{% for post in posts %}
|
|
<div class="post-list-item">
|
|
<span class="post-date">{{post.date}}</span>
|
|
<span><a href="{{post.url()}}">{{post.title}}</a></span>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div class="row">
|
|
{% if prev_page_url %}
|
|
<a href="{{ prev_page_url }}">
|
|
<i class="fa fa-arrow-left"></i>
|
|
newer posts
|
|
</a>
|
|
{% endif %}
|
|
{% if next_page_url %}
|
|
<a class="u-pull-right" href="{{ next_page_url }}">
|
|
older posts
|
|
<i class="fa fa-arrow-right"></i>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|