Moved some common links to the config.yml file; continued work on the initial blog post

This commit is contained in:
2021-08-19 15:36:28 -04:00
parent 788e7d87f3
commit abd5dbd9b1
7 changed files with 63 additions and 38 deletions

13
src/blog.html 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>