mirror of
https://github.com/mbirth/wiki.git
synced 2024-11-09 13:16:45 +00:00
61 lines
1.6 KiB
HTML
61 lines
1.6 KiB
HTML
---
|
|
title: Welcome to the Wiki
|
|
layout: default
|
|
---
|
|
<h3>Latest posts:</h3>
|
|
|
|
<ul>
|
|
{% for post in paginator.posts %}
|
|
<li itemscope itemtype="http://schema.org/BlogPosting"><a itemprop="url" href="{{ post.url }}"><span itemprop="dateModified">{{ post.date | date: "%Y-%m-%d" }}</span> - <span itemprop="name">{{ post.title }}</span></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: '//', '/' }}">« Newer</a>
|
|
{% else %}
|
|
<span>« 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 »</a>
|
|
{% else %}
|
|
<span>Older »</span>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% comment %}
|
|
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>
|
|
{% endcomment %}
|