diff options
Diffstat (limited to 'Blog')
| -rw-r--r-- | Blog/index.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Blog/index.html b/Blog/index.html index a0c5d1e..5491c97 100644 --- a/Blog/index.html +++ b/Blog/index.html @@ -3,22 +3,22 @@ layout: default --- <ul class="posts"> - {% for post in site.posts %} - <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li> - {{ post.excerpt }} - <a href="{{ post.url }}">Read more...</a> - {% endfor %} - - <div class="pagination"> - {% if paginator.previous_page %} - <a href="/page{{ paginator.previous_page }}" class="previous">Previous</a> - {% endif %} - - {% if paginator.total_pages != 1 %} - <span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span> - {% endif %} - {% if paginator.next_page %} - <a href="/page{{ paginator.next_page }}" class="next">Next</a> - {% endif %} - </div> + {% for post in site.posts %} + <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li> + {{ post.excerpt }} + <a href="{{ post.url }}">Read more...</a> + {% endfor %} + + <div class="pagination"> + {% if paginator.previous_page %} + <a href="/page{{ paginator.previous_page }}" class="previous">Previous</a> + {% endif %} + + {% if paginator.total_pages != 1 %} + <span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span> + {% endif %} + {% if paginator.next_page %} + <a href="/page{{ paginator.next_page }}" class="next">Next</a> + {% endif %} + </div> </ul> |
