diff options
author | Karl Hallsby <karl@hallsby.com> | 2021-06-07 20:36:43 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2021-06-07 20:36:43 -0500 |
commit | a3d6a729e13d7faaff134ed3938e304255fb2830 (patch) | |
tree | 5a3d25d93988e2837b1bc32b71b78755c17d1ded | |
parent | 8dc971f2a86b539165607e8f12d890706f10cd73 (diff) |
Add home listing page for blog posts and add to navigation header
-rw-r--r-- | _data/navigation.yml | 2 | ||||
-rw-r--r-- | posts.markdown | 13 |
2 files changed, 15 insertions, 0 deletions
diff --git a/_data/navigation.yml b/_data/navigation.yml index 0eac74d..e875aca 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -1,6 +1,8 @@ header: - title: About Me url: /about + - title: Blog Posts + url: /posts - title: Education url: /education - title: Experience diff --git a/posts.markdown b/posts.markdown new file mode 100644 index 0000000..768b560 --- /dev/null +++ b/posts.markdown @@ -0,0 +1,13 @@ +--- +layout: page +title: Blog Posts +permalink: /posts/ +--- + +<ul> + {% for post in site.posts %} + <li> + <a href="{{ post.url }}">{{ post.title }}</a> + </li> + {% endfor %} +</ul> |