diff options
-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> |