Adjusted some links in the navigation; changed the permalinks for blog posts

This commit is contained in:
2021-08-19 22:36:04 -04:00
parent a4ef42777f
commit 6823f9c0c0
5 changed files with 11 additions and 4 deletions

13
src/blog.markdown Normal file
View File

@ -0,0 +1,13 @@
---
layout: page
---
<ul id="post-list">
{% for post in site.posts %}
<li>
<h5 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h5>
<p class="post-info">{{ post.date | date: "%a %b %d, %Y" }}</p>
{{ post.content | truncate: 350 }}
</li>
{% endfor %}
</ul>