2015-02-19 23:39:25 +00:00
|
|
|
---
|
2015-02-27 11:42:50 +00:00
|
|
|
title: Welcome to wiki.mbirth.de
|
2015-02-19 23:39:25 +00:00
|
|
|
layout: default
|
|
|
|
---
|
2017-04-10 23:24:43 +01:00
|
|
|
{::nomarkdown}
|
2017-04-10 22:35:36 +01:00
|
|
|
<script type="application/ld+json">
|
2016-02-12 10:13:51 +00:00
|
|
|
{
|
2017-04-10 23:24:43 +01:00
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "WebSite",
|
2016-02-12 10:15:47 +00:00
|
|
|
"url": "{{ site.url }}/",
|
2016-02-12 10:13:51 +00:00
|
|
|
"potentialAction": {
|
2017-04-10 23:24:43 +01:00
|
|
|
"@type": "SearchAction",
|
2016-02-12 10:15:47 +00:00
|
|
|
"target": "{{ site.url }}/?q={search_term_string}",
|
2016-02-12 10:13:51 +00:00
|
|
|
"query-input": "required name=search_term_string"
|
|
|
|
}
|
2017-04-10 22:35:36 +01:00
|
|
|
}
|
2016-02-12 10:13:51 +00:00
|
|
|
</script>
|
2017-04-10 23:24:43 +01:00
|
|
|
{:/nomarkdown}
|
2016-02-12 10:13:51 +00:00
|
|
|
|
2015-02-23 00:28:33 +00:00
|
|
|
<h3>Latest posts ({{ site.posts | size }} total):</h3>
|
2015-02-19 23:39:25 +00:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for post in paginator.posts %}
|
2015-04-13 23:49:46 +01:00
|
|
|
<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>
|
2016-02-12 10:32:42 +00:00
|
|
|
<meta itemprop="datePublished" content="{{ post.created | date: '%Y-%m-%d' }}" />
|
2017-04-10 22:33:24 +01:00
|
|
|
<meta itemprop="headline" content="{{ post.title }}" />
|
|
|
|
<meta itemprop="author" content="mbirth" />
|
2015-04-13 23:49:46 +01:00
|
|
|
{% if post.language == 'de' %}
|
2016-02-12 10:32:42 +00:00
|
|
|
<img class="emoji" title=":de:" alt=":de:" src="https://assets-cdn.github.com/images/icons/emoji/de.png" width="20" height="20" align="absmiddle" />
|
2015-04-13 23:49:46 +01:00
|
|
|
<meta itemprop="inLanguage" content="de" />
|
|
|
|
{% else %}
|
|
|
|
<meta itemprop="inLanguage" content="en" />
|
|
|
|
{% endif %}
|
|
|
|
{% if post.updated != post.created %}
|
2016-02-12 10:32:42 +00:00
|
|
|
<img class="emoji" title=":up:" alt=":up:" src="https://assets-cdn.github.com/images/icons/emoji/up.png" width="20" height="20" align="absmiddle" />
|
2015-04-13 23:49:46 +01:00
|
|
|
{% endif %}
|
|
|
|
</li>
|
2015-02-19 23:39:25 +00:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% if paginator.total_pages > 1 %}
|
|
|
|
<div class="pagination">
|
|
|
|
{% if paginator.previous_page %}
|
2015-02-20 08:58:47 +00:00
|
|
|
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Newer</a>
|
2015-02-19 23:39:25 +00:00
|
|
|
{% else %}
|
|
|
|
<span>« Newer</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for page in (1..paginator.total_pages) %}
|
|
|
|
{% if page == paginator.page %}
|
|
|
|
<em>{{ page }}</em>
|
|
|
|
{% elsif page == 1 %}
|
2015-02-20 08:58:47 +00:00
|
|
|
<a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
|
2015-02-19 23:39:25 +00:00
|
|
|
{% else %}
|
2015-02-20 08:58:47 +00:00
|
|
|
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
|
2015-02-19 23:39:25 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if paginator.next_page %}
|
2015-02-20 08:58:47 +00:00
|
|
|
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older »</a>
|
2015-02-19 23:39:25 +00:00
|
|
|
{% else %}
|
|
|
|
<span>Older »</span>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2015-02-19 23:55:28 +00:00
|
|
|
{% comment %}
|
2015-02-19 23:39:25 +00:00
|
|
|
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>
|
2015-02-19 23:55:28 +00:00
|
|
|
{% endcomment %}
|