16 lines
485 B
HTML
16 lines
485 B
HTML
---
|
|
layout: default
|
|
title: brendan mcdevitt
|
|
---
|
|
|
|
<div id="home">
|
|
<h1>Blog Posts</h1>
|
|
<ul class="posts">
|
|
{% for post in site.posts %}
|
|
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
<h1>100 Days of Code</h1>
|
|
{% for item in site.100-days-of-code %}
|
|
<li><span>{{ item.date | date_to_string }}</span> » <a href="{{ item.url }}">{{ item.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|