net/_includes/post.html

23 lines
773 B
HTML
Raw Normal View History

2012-01-02 23:15:05 -05:00
<article class="hentry" role="article">
<header>
<h1 class="entry-title">{{ post.title }}</h1>
2015-03-13 14:30:51 -04:00
<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate><a href="{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time>
2015-03-05 14:30:55 -05:00
{% if post.image %}
2015-03-13 14:30:51 -04:00
<figure>
<img class="feature-image" src="{{ post.image }}" alt="{{ post.title }}">
{% if post.image_source %}
<figcaption>
<cite><a href="{{ post.image_source }}">{{ post.image_source }}</a></cite>
</figcaption>
{% endif %}
</figure>
2015-03-05 14:30:55 -05:00
{% endif %}
2012-01-02 23:15:05 -05:00
</header>
<div class="entry-content">
{{ content }}
</div>
<footer class="meta">
2013-11-10 12:47:53 -05:00
<p><i class="fa fa-tags"></i> {{ post.tags | tag_links }}</p>
2012-01-02 23:15:05 -05:00
</footer>
</article>