remove pagination since we will only show 3 posts, and add a link at the bottom to ask users to login to see more posts
This commit is contained in:
parent
e5c642cc4d
commit
c0bef22dda
|
@ -5,16 +5,7 @@
|
||||||
{% for post in posts %}
|
{% for post in posts %}
|
||||||
{% include 'post.html' %}
|
{% include 'post.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<ul class="pager">
|
<hr>
|
||||||
{% if posts.has_prev %}
|
To see more posts and to start contributing, <a href="{{ url_for('index') }}"> log in </a>
|
||||||
<li class="previous"><a href="{{ url_for('index', page=posts.prev_num) }}">Newer posts</a></li>
|
<hr>
|
||||||
{% else %}
|
|
||||||
<li class="previous disabled"><a href="#">Newer posts</a></li>
|
|
||||||
{% endif %}
|
|
||||||
{% if posts.has_next %}
|
|
||||||
<li class="next"><a href="{{ url_for('index', page=posts.next_num) }}">Older posts</a></li>
|
|
||||||
{% else %}
|
|
||||||
<li class="next disabled"><a href="#">Older posts</a></li>
|
|
||||||
{% endif %}
|
|
||||||
</ul>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue