website/_layouts/post.html

66 lines
2.3 KiB
HTML
Raw Normal View History

2018-08-17 17:18:40 +00:00
---
layout: default
---
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}{% if page.subtitle %}: <span class="post-subtitle">{{ page.subtitle | escape }}</span>{% endif %}
</h1>
2018-10-26 01:19:27 +00:00
{%- include post_meta.html page=page include_link=true -%}
2018-08-17 17:18:40 +00:00
</header>
<div class="post-content e-content" itemprop="articleBody">
{{ content }}
</div>
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
<br>
{%- if page.updatedOn -%}
<div class="post-updatedOn">Updated: <span class="updatedPostDate">{{ page.updatedOn | escape }}</span></div>
{%- endif -%}
2018-10-26 01:19:27 +00:00
{%- if page.categories -%}
<div class="post-tags">
<img src="{{ 'assets/main/icons/categories.svg' | relative_url }}" style="width: 2em; height: 2em">
{% for category in page.categories %}
<a class="link-tag" href="{{site.baseurl}}/data/categories#{{category|slugize}}">{{category}}</a>
{% unless forloop.last %}&nbsp;{% endunless %}
{% endfor %}
</div>
{%- endif -%}
2018-08-17 17:18:40 +00:00
{%- if page.tags -%}
<div class="post-tags">
<img src="{{ 'assets/main/icons/tag.svg' | relative_url }}" style="width: 2em; height: 2em">
2018-08-17 17:18:40 +00:00
{% for tag in page.tags %}
<a class="link-tag" href="{{site.baseurl}}/data/tags#{{tag|slugize}}">{{tag}}</a>
2018-08-17 17:18:40 +00:00
{% unless forloop.last %}&nbsp;{% endunless %}
{% endfor %}
</div>
{%- endif -%}
<div class="relative-posts">
<div class="previous-post">
{%- if page.previous -%}
<span style="font-size: 2em"></span> Previous
<a href="{{ page.previous.url | relative_url }}" class="post-link" style="display: block;">{{page.previous.title}}</a>
{%- endif -%}
</div>
<div class="next-post">
{%- if page.next -%}
Next <span style="font-size: 2em"></span>
<a href="{{ page.next.url | relative_url }}" class="post-link" style="display: block;">{{page.next.title}}</a>
{%- endif -%}
</div>
</div>
2018-08-17 17:18:40 +00:00
{%- if site.disqus.shortname -%}
{%- include disqus_comments.html -%}
{%- endif -%}
2018-12-24 09:40:38 +00:00
<a href="{{ site.home_link }}" class="home-link-logo">
<img src="{{ 'assets/main/personal-logo.svg' | relative_url }}">
</a>
2018-08-17 17:18:40 +00:00
{%- include addl-post-fns.html -%}
2018-08-17 18:23:32 +00:00
{%- include libraries.html -%}
2018-08-17 17:18:40 +00:00
</article>