re-indent blog.html
This commit is contained in:
parent
d2cfe72e90
commit
b62b3c0b0d
1 changed files with 11 additions and 10 deletions
|
@ -5,13 +5,14 @@ pagination:
|
||||||
enabled: true
|
enabled: true
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- dummy content -->
|
<!-- posts -->
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
|
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
|
||||||
<p class="post-metadata">Published on {{ post.date | date: "%b %-d, %Y" }}</p>
|
<p class="post-metadata">Published on {{ post.date | date: "%b %-d, %Y" }}</p>
|
||||||
{{ post.content }}
|
{{ post.content }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
<!-- pagination -->
|
||||||
{% if paginator.total_pages > 1 %}
|
{% if paginator.total_pages > 1 %}
|
||||||
<ul class="pagination">
|
<ul class="pagination">
|
||||||
{% if paginator.previous_page %}
|
{% if paginator.previous_page %}
|
||||||
|
|
Loading…
Reference in a new issue