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

25 lines
778 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.name }}
2013-12-28 17:05:47 +01:00
{% endif %}
</a>
</p>
2013-12-01 21:46:31 +01:00
2015-04-17 23:04:01 +02:00
<time is="time-ago" class="pubdate" datetime="{{ page.date | date_to_xmlschema }}" pubdate{% if page.updated %} data-updated="true"{% endif %}>{{ page.date | date_to_string }}</time>
2013-12-01 21:46:31 +01:00
{% if page.updated %}
2015-04-17 23:04:01 +02:00
<time is="time-ago" class="updated" datetime="{{ page.updated | date_to_xmlschema }}">Updated {{ page.updated | date_to_string }}</time>
2013-12-01 21:46:31 +01:00
{% endif %}
2015-04-17 22:37:35 +02:00
2015-06-07 22:53:01 +02:00
<p class="tags">
{% for tag in page.tags %}
<a class="tag" href="/tag/{{ tag }}">{{ tag }}</a>
{% endfor %}
</p>
</footer>