We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33c5855 commit a794b7fCopy full SHA for a794b7f
blog/categories.html
@@ -8,11 +8,11 @@
8
<h2>Posts by category:</h2>
9
<ul>
10
{% for category in site.categories %}
11
- <li id="#{{ category | first }}">{{ category | first | capitalize }}</li>
+ <h5 id="#{{ category | first }}">» {{ category | first | capitalize }}</h5>
12
13
{% for posts in category %}
14
{% for post in posts %}
15
- <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+ <li><a href="{{ post.url }}">{{ post.title }}</a> <span class="byline">‐ {{ post.date | date: "%B %d, %Y" }}</span></li>
16
{% endfor %}
17
18
</ul>
0 commit comments