net/_includes/post.html

23 lines
812 B
HTML
Raw Normal View History

2022-05-26 21:57:21 -04:00
<article class="h-entry prose lg:prose-lg" role="article">
2012-01-02 23:15:05 -05:00
<header>
2022-05-26 21:57:21 -04:00
<h1 class="p-name">{{ post.title }}</h1>
2022-12-15 14:39:17 -05:00
<time class="dt-published" datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate><a class="u-url" href="{{ post.url | relative_path }}">{{ post.date | date: "%B %d, %Y" }}</a></time>
2012-01-02 23:15:05 -05:00
</header>
2022-05-26 21:57:21 -04:00
{% if post.image %}
<figure class="-mx-12">
2022-12-15 14:39:17 -05:00
<img class="u-featured rounded-md shadow-md w-full" src="{{ post.image | relative_path }}" alt="{{ post.title }}">
2022-05-26 21:57:21 -04:00
{% if post.image_source %}
<figcaption>
<cite><a href="{{ post.image_source }}">{{ post.image_source }}</a></cite>
</figcaption>
{% endif %}
</figure>
{% endif %}
<section class="e-content">
{{content}}
</section>
<footer>
<p>{{ post.tags | tag_links }}</p>
2012-01-02 23:15:05 -05:00
</footer>
</article>