drewcassidy.me/_includes/post-info.html
drewcassidy 897fb8fd99 Remove filler content
• move Index, Projects, and Blog to markdown instead of html files
• fix small syntax error in post-info.html, goddamn HTML and its silent
error handling 😖
• remove filler content in index, as well as some tags I was using for
testing
2023-04-19 01:16:57 -07:00

24 lines
700 B
HTML

<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>
{% endfor %}
{% else %}
none
{% endif %}
</small>
</td>
<td class="post-date" style="text-align:right">
<small>
<i>{{ include.date | date: "%b&nbsp;%-d,&nbsp;%Y" }}</i>
</small>
</td>
</tr>
</table>
<hr>