We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f76583 commit 7fc064bCopy full SHA for 7fc064b
blog/categories.html
@@ -12,7 +12,9 @@ <h5 id="#{{ category | first }}">» {{ category | first | capitalize }}</h5
12
<ul>
13
{% for posts in category %}
14
{% for post in posts %}
15
- <li><a href="{{ post.url }}">{{ post.title }}</a> <span class="byline">‐ {{ post.date | date: "%B %d, %Y" }}</span></li>
+ {% if post != null %}
16
+ <li><a href="{{ post.url }}">{{ post.title }}</a> <span class="byline">‐ {{ post.date | date: "%B %d, %Y" }}</span></li>
17
+ {% endif %}
18
{% endfor %}
19
20
</ul>
0 commit comments