blog/_layouts/post.html

27 lines
679 B
HTML

---
layout: default
---
<h2>{{ page.title }}</h2>
<span id="post-date">
{{ site.author.name }} &mdash; {{ page.date | date: "%e %B %Y" }}
{%- if page.last_modified_at %}
(last edited on {{ page.last_modified_at | date: "%e %B %Y" }})
{%- endif -%}
</span>
<div class="post-content">
{{ content }}
</div>
{%- if site.comments.enable and page.comments != false and jekyll.environment == 'production' -%}
<script data-isso="{{ site.comments.url }}/"
data-isso-require-author="true"
data-isso-reply-to-self="true"
src="{{ site.comments.url }}/js/embed.min.js"></script>
<section id="isso-thread" data-title="{{ page.title | escape }}"></section>
{%- endif -%}