website/_layouts/home.html

50 lines
1.4 KiB
HTML
Raw Normal View History

2018-08-17 17:18:40 +00:00
---
layout: default
2018-12-24 09:40:38 +00:00
list_title: "Poop"
2018-08-17 17:18:40 +00:00
---
<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
{{ content }}
{%- if site.pinpost -%}
2018-08-17 17:18:40 +00:00
<section id="pinned-section">
<h3>Pinned Posts:</h3>
{%- include pinpost.html -%}
</section>
{%- endif -%}
2018-08-17 17:18:40 +00:00
{%- if site.posts.size > 0 -%}
2018-12-24 09:40:38 +00:00
<h2 class="post-list-heading">{{ page.list_title | default: "My Notes" }}</h2>
2018-08-17 17:18:40 +00:00
<!-- Pagination links -->
{%- for post in paginator.posts -%}
<div class="home-post">
<h2><a href="{{ post.url | relative_url }}" class="post-link">{{ post.title }}</a></h2>
{%- include post_meta.html page=post include_link=true -%}
</div>
{%- endfor -%}
<!-- Pagination links -->
2018-08-17 17:18:40 +00:00
<div class="pagination">
{%- if paginator.previous_page -%}
<a href="{{ paginator.previous_page_path | relative_url }}" class="previous">Previous</a>
{%- else -%}
<span class="previous disabled">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 | relative_url }}" class="next">Next</a>
{%- else -%}
<span class="next disabled">Next</span>
{%- 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>