drewcassidy.me/_includes/post-info.html

24 lines
700 B
HTML
Raw Normal View History

2017-12-24 23:04:19 +00:00
<table class="post-info" style="width:100%">
<tr>
<td class="post-tags">
<small>
Tags:
{% if include.tags.size > 0 %}
{% assign tags = include.tags | sort_natural | uniq %}
{% for tag in tags %}
<i>{{ tag | downcase }}</i>
2017-12-24 23:04:19 +00:00
{% endfor %}
{% else %}
none
{% endif %}
</small>
</td>
2017-12-24 23:04:19 +00:00
<td class="post-date" style="text-align:right">
<small>
<i>{{ include.date | date: "%b&nbsp;%-d,&nbsp;%Y" }}</i>
2017-12-24 23:04:19 +00:00
</small>
</td>
</tr>
</table>
<hr>