47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
---
|
|
layout: default
|
|
title: Home
|
|
---
|
|
|
|
<div class="posts">
|
|
{% for post in paginator.posts %}
|
|
<div class="post">
|
|
<h1 class="post-title">
|
|
{% if post.category == "links" %}
|
|
⚓ <a href="{{ post.link }}" rel="external">{{ post.title }}</a>
|
|
{% else %}
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
{% endif %}
|
|
</h1>
|
|
|
|
<span class="post-date">
|
|
{{ post.date | date_to_string }}
|
|
·
|
|
<a href="{{ post.url }}" title="Permalink">∞</a>
|
|
</span>
|
|
|
|
{% if post.category == "links" %}
|
|
{{ post.content }}
|
|
{% else %}
|
|
{{ post.excerpt }}
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="pagination">
|
|
{% if paginator.next_page %}
|
|
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
|
|
{% else %}
|
|
<span class="pagination-item older">Older</span>
|
|
{% endif %}
|
|
{% if paginator.previous_page %}
|
|
{% if paginator.page == 2 %}
|
|
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
|
|
{% else %}
|
|
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
|
|
{% endif %}
|
|
{% else %}
|
|
<span class="pagination-item newer">Newer</span>
|
|
{% endif %}
|
|
</div>
|