brendan.mcdevitt.tech/index.html
2019-02-05 03:29:07 -05:00

26 lines
735 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> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h1>Homelab Posts</h1>
<ul class="homelab">
{% for post in site.homelab %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h1>Programming</h1>
<ul class="programming">
{% for post in site.programming %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}"> {{post.title }}</a></li>
{% endfor %}
</ul>