-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·24 lines (20 loc) · 936 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
paginated: true
---
<h1>{% if paginator.page == 1 %}Recent {% endif %}Posts{% if paginator.page > 1 %} (Page {{ paginator.page }}){% endif %}</h1>
<p>The output of <code>{% raw %}{% github_edit_link %}{% endraw %}</code> is <strong>{% github_edit_link %}</strong>.</p>
<ul>
<li><code>page.name</code>: <strong>{{ page.name }}</strong></li>
<li><code>page.path</code>: <strong>{{ page.path }}</strong></li>
<li><code>page.url</code>: <strong>{{ page.url }}</strong></li>
</ul>
<nav>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | relative_url }}" rel="prev">Previous page</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | relative_url }}" rel="next">Next page</a>
{% endif %}
</nav>
<p>See the issue at <a href="https://github.com/jekyll/github-metadata/issues/213">https://github.com/jekyll/github-metadata/issues/213</a>.</p>