modify some things with blog post handling
This commit is contained in:
@ -4,8 +4,9 @@
|
||||
<small>
|
||||
Tags:
|
||||
{% if include.tags.size > 0 %}
|
||||
{% for tag in include.tags limit: 6%}
|
||||
<i>{{ tag }}</i>
|
||||
{% assign tags = include.tags | sort_natural | uniq %}
|
||||
{% for tag in tags %}
|
||||
<i>{{ tag | downcase }}</i>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
none
|
||||
@ -13,7 +14,7 @@
|
||||
</small>
|
||||
<td class="post-date" style="text-align:right">
|
||||
<small>
|
||||
<i>{{ include.date | date: "%b %-d, %Y" }}</i>
|
||||
<i>{{ include.date | date: "%b %-d, %Y" }}</i>
|
||||
</small>
|
||||
</td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user