1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_includes/entry_meta.html

18 lines
610 B
HTML
Raw Normal View History

<footer class="entry-meta">
<p class="byline author vcard source-org">
2013-12-28 17:05:47 +01:00
<span class="by">by</span> <a class="fn" rel="author" href="/about/">
{% if page.author %}
{{ page.author }}
{% else %}
{{ site.author }}
{% endif %}
</a>
</p>
2013-12-01 21:46:31 +01:00
2013-12-28 17:05:47 +01:00
<time class="pubdate" datetime="{{ page.date | date_to_xmlschema }}" pubdate{% if page.updated %} data-updated="true"{% endif %}>{{ page.date | timeago }}</time>
2013-12-01 21:46:31 +01:00
{% if page.updated %}
<time class="updated" datetime="{{ page.updated | date_to_xmlschema }}">Updated {{ page.updated | timeago }}</time>
{% endif %}
</footer>