drewcassidy
897fb8fd99
• 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
24 lines
700 B
HTML
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 %-d, %Y" }}</i>
|
|
</small>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<hr>
|