bbb/_layouts/post.html
2025-06-10 23:45:52 +05:30

28 lines
644 B
HTML

---
layout: default
---
<article class="post detailed">
<h1>{{ page.title }}</h1>
<div>
<p class="author_title">{{ page.date | date: "%B %e, %Y" }}</p>
{% if page.last_modified_at %}
<p class="author_title" datetime="{{ page.last_modified_at | date_to_xmlschema }}">(Updated: {{
page.last_modified_at | date: "%b %-d, %Y" }})</p>
{% endif %}
</div>
<div class="entry">
{{ content }}
</div>
<hr />
<div class="comments">
<b>Have something to say? You can ...</b>
<br />
<ul>
<li>Send an email with your comments to <u>neophytenuggets@proton.me</u>.</li>
</ul>
</div>
</article>