Start working on images

This commit is contained in:
2017-12-24 15:04:19 -08:00
committed by Andrew Cassidy
parent d94d925f8d
commit 251e6a2862
56 changed files with 281 additions and 109 deletions

21
_includes/post-info.html Normal file
View File

@ -0,0 +1,21 @@
<table class="post-info" style="width:100%">
<tr>
<td class="post-tags">
<small>
Tags:
{% if include.tags.size > 0 %}
{% for tag in include.tags limit: 6%}
<i>{{ tag }}</i>
{% endfor %}
{% else %}
none
{% endif %}
</small>
<td class="post-date" style="text-align:right">
<small>
<i>{{ include.date | date: "%b %-d, %Y" }}</i>
</small>
</td>
</tr>
</table>
<hr>