mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
55 lines
1.5 KiB
HTML
55 lines
1.5 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="home">
|
|
{%- if page.title -%}
|
|
<h1 class="page-heading">{{ page.title }}</h1>
|
|
{%- endif -%}
|
|
|
|
{{ content }}
|
|
|
|
{%- if site.posts.size > 0 -%}
|
|
{% comment %} <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2> {% endcomment %}
|
|
<ul class="post-list">
|
|
{%- for post in paginator.posts -%}
|
|
{%- unless post.draft -%}
|
|
<li>
|
|
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
|
|
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
|
<h3>
|
|
<a class="post-link" href="{{ post.url | relative_url }}">
|
|
{{ post.title | escape }}
|
|
</a>
|
|
</h3>
|
|
<div class="post-content e-content" itemprop="articleBody">
|
|
{{ post.content }}
|
|
</div>
|
|
</li>
|
|
{%- endunless -%}
|
|
{%- endfor -%}
|
|
</ul>
|
|
|
|
<!-- Pagination links -->
|
|
<div class="pagination">
|
|
{% if paginator.previous_page %}
|
|
<a href="{{ paginator.previous_page_path }}" class="previous">
|
|
Previous
|
|
</a>
|
|
{% else %}
|
|
<span class="previous">Previous</span>
|
|
{% endif %}
|
|
<span class="page_number ">
|
|
Page: {{ paginator.page }} of {{ paginator.total_pages }}
|
|
</span>
|
|
{% if paginator.next_page %}
|
|
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
|
|
{% else %}
|
|
<span class="next ">Next</span>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
|
{%- endif -%}
|
|
|
|
</div>
|