Add sitemap and minor change

changed the date format under category page
This commit is contained in:
2021-10-13 19:11:17 -04:00
parent c2f2b702c5
commit 47c2c2e8a1
20 changed files with 126 additions and 11 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ public: true
<h2 class="category" id="{{ word }}">{{ word | upcase }}</h2>
<ul>
{% for post in site.categories[word] %}{% if post.title != null %}
<li><span>{{ post.date | date: "%b %d" }}</span> » <a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a></li>
<li><span>{{ post.date | date: "%b %-d, %Y" }}</span> » <a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a></li>
{% endif %}{% endfor %}
</ul>
{% endunless %}{% endfor %}