sloane.sh/_layouts/post.html

59 lines
1.3 KiB
HTML
Raw Normal View History

2025-01-28 12:38:02 -05:00
---
layout: default
---
<article class="h-entry">
2025-01-28 18:54:16 -05:00
<header>
{% if page.title %}
<h1 class="p-name">{{ page.title | smartify }}</h1>
{% endif %}
{% if page.summary %}
<p class="p-summary">{{ page.summary }}</p>
{% endif %}
</header>
2025-01-28 12:38:02 -05:00
<div class="e-content">
{{ content }}
</div>
<hr />
<footer>
<dl>
<dt>Author</dt>
<dd>
<a class="p-author h-card" href="{{ site.author.url }}">{{ site.author.name }}</a>
</dd>
<dt>Published</dt>
2025-01-28 18:54:16 -05:00
<dd><time datetime="{{ page.date }}">{{ page.date | date: "%B %e, %Y" }}</time></dd>
2025-01-28 12:38:02 -05:00
<!-- <dt>Category</dt> -->
<!-- <dd> -->
<!-- </dd> -->
<!-- <dt>Tags</dt> -->
<!-- <dd> -->
<!-- <ul> -->
<!-- {% for tag in page.tags %} -->
<!-- <li><a href= -->
<!-- {% endfor %} -->
<!-- </ul> -->
<!-- </dd> -->
2025-01-28 18:54:16 -05:00
2025-01-28 12:38:02 -05:00
</dl>
2025-01-28 18:54:16 -05:00
<ul>
{% for url in page.syndication %}
<li><a class="u-syndication" href="{{ url }}">{{ url }}</a></li>
{% endfor %}
</ul>
2025-01-28 17:53:02 -05:00
{% webmentions page.url %}
2025-01-28 18:54:16 -05:00
2025-01-28 17:53:02 -05:00
{% for target in page.syndicate_to %}
<a href="{{ site.webmentions.syndication[target].endpoint }}"></a>
{% endfor %}
2025-01-28 12:38:02 -05:00
</footer>
</article>
2025-01-28 17:53:02 -05:00
{% webmentions_js %}