40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
{%- if page.paginator -%}
|
|
{%- assign paginator = page.paginator -%}
|
|
{%- elsif paginator == nil -%}
|
|
{%- assign paginator = site -%}
|
|
{%- endif -%}
|
|
|
|
{%- if paginator.posts.size > 0 -%}
|
|
<div class="pagination">
|
|
<!-- Post list links -->
|
|
<ul class="post-list">
|
|
{%- for post in paginator.posts -%}
|
|
<li>
|
|
{%- assign date_format = site.yat.date_format | default: "%b %-d, %Y" -%}
|
|
<h2 class="post-title">
|
|
{%- assign post_url = post.url | relative_url -%}
|
|
<a class="post-link" href="{{ post_url }}">
|
|
{{ post.title | escape }}
|
|
</a>
|
|
</h2>
|
|
<div class="post-meta">
|
|
<span class="post-date">{{ post.date | date: date_format }}</span>
|
|
</div>
|
|
<p class="post-excerpt">
|
|
{{ post.content | strip_html | truncatewords: 50 }}
|
|
</p>
|
|
<div class="post-tags">
|
|
{%- for tag in post.tags -%}
|
|
<a class="post-tag" href="/tags.html#{{tag}}">#{{tag}}</a>
|
|
{%- endfor -%}
|
|
</div>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
|
|
<!-- Pagination links -->
|
|
{%- if paginator.posts.size < site.posts.size -%}
|
|
{%- include views/paginator.html -%}
|
|
{%- endif -%}
|
|
</div>
|
|
{%- endif -%}
|