diff options
Diffstat (limited to 'blog.md')
-rw-r--r-- | blog.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +--- +title: "Blog Posts" +layout: default +permalink: blog/ +--- + +## Blog Posts + +<p align="center">Writing about everything and anything related to web design. Articles tend to have a major focus on performance, accessibility and/or usability.</p> + +--- + +<ul> + {% for post in site.posts %} + <li><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%m/%d/%Y" }}</time><br><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li><hr> + {% endfor %} +</ul>
\ No newline at end of file |