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

33 lines
952 B
HTML
Raw Normal View History

<footer class="entry-meta">
2015-06-10 22:17:56 +02:00
<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-06-10 22:17:56 +02:00
<p class="time">
<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>
{% if page.updated %}
<br>updated <time is="time-ago" class="updated" datetime="{{ page.updated | date_to_xmlschema }}">{{ page.updated | date_to_string }}</time>
{% endif %}
</p>
2013-12-01 21:46:31 +01:00
2015-06-10 22:17:56 +02:00
<p class="categories">
{% for category in page.categories %}
<a class="category" href="/{{ category }}">{{ category }}</a>
{% endfor %}
</p>
2015-04-17 22:37:35 +02:00
2015-06-07 22:53:01 +02:00
<p class="tags">
{% for tag in page.tags %}
2015-06-10 22:17:56 +02:00
<a class="tag" href="/tag/{{ tag }}">{{ tag }}</a>
2015-06-07 22:53:01 +02:00
{% endfor %}
</p>
</footer>