1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00

Enabled pagination.

This commit is contained in:
Markus Birth 2015-02-20 00:39:25 +01:00
parent cad02febbc
commit 58f795722b
3 changed files with 59 additions and 40 deletions

View File

@ -5,7 +5,7 @@ url: "http://wiki.mbirth.de"
permalink: none permalink: none
#paginate: 10 paginate: 20
markdown: kramdown markdown: kramdown
#markdown: redcarpet #markdown: redcarpet

58
index.html Normal file
View File

@ -0,0 +1,58 @@
---
title: Welcome to the Wiki
layout: default
---
<h3>Welcome to GitHub Pages.</h3>
<ul>
{% for post in paginator.posts %}
<li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li>
{% endfor %}
</ul>
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Newer</a>
{% else %}
<span>&laquo; Newer</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elsif page == 1 %}
<a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older &raquo;</a>
{% else %}
<span>Older &raquo;</span>
{% endif %}
</div>
{% endif %}
All posts:
<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li>
{% endfor %}
</ul>
Categories:
<ul>
{% for category in site.categories %}
<li>{{ category[0] }}
<ul>
{% for page in category[1] %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>

View File

@ -1,39 +0,0 @@
---
title: Welcome to the Wiki
layout: default
---
### Welcome to GitHub Pages.
All posts:
<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li>
{% endfor %}
</ul>
Categories:
<ul>
{% for category in site.categories %}
<li>{{ category[0] }}
<ul>
{% for page in category[1] %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
Tags:
<ul>
{% for tag in site.tags %}
<li> {{ tag[0] }}
<ul>
{% for page in tag[1] %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>