2018-08-17 17:18:40 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<div class="home">
|
|
|
|
{%- if page.title -%}
|
|
|
|
<h1 class="page-heading">{{ page.title }}</h1>
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
{{ content }}
|
|
|
|
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- if site.pinpost -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
<section id="pinned-section">
|
|
|
|
<h3>Pinned Posts:</h3>
|
|
|
|
{%- include pinpost.html -%}
|
|
|
|
</section>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- endif -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
|
|
|
|
{%- if site.posts.size > 0 -%}
|
|
|
|
<h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
|
|
|
|
|
2018-08-19 06:42:58 +00:00
|
|
|
<!-- Pagination links -->
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- for post in paginator.posts -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<div class="home-post">
|
|
|
|
<h2><a href="{{ post.url | relative_url }}" class="post-link">{{ post.title }}</a></h2>
|
2018-10-24 09:51:53 +00:00
|
|
|
{%- include post_meta.html page=post include_link=true -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
</div>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- endfor -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
|
|
|
|
<!-- Pagination links -->
|
2018-08-17 17:18:40 +00:00
|
|
|
<div class="pagination">
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- if paginator.previous_page -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<a href="{{ paginator.previous_page_path | relative_url }}" class="previous">Previous</a>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- else -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<span class="previous disabled">Previous</span>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- endif -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- if paginator.next_page -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<a href="{{ paginator.next_page_path | relative_url }}" class="next">Next</a>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- else -%}
|
2018-08-19 06:42:58 +00:00
|
|
|
<span class="next disabled">Next</span>
|
2018-10-29 03:44:13 +00:00
|
|
|
{%- endif -%}
|
2018-08-17 17:18:40 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
</div>
|