brendan.mcdevitt.tech/index.html

41 lines
1.2 KiB
HTML

---
layout: default
title: brendan mcdevitt
---
<div id="home">
<h1>Blog Posts</h1>
<ul class="posts">
{% for post in site.posts %}
{% unless post.title == 'posts index' %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
<h1>Homelab Posts</h1>
<ul class="homelab">
{% for post in site.homelab %}
{% unless post.title == 'homelab index' %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
<h1>Programming</h1>
<ul class="programming">
{% for post in site.programming %}
{% unless post.title == 'programming index' %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}"> {{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
<h1>Security Thoughts</h1>
<ul class="security">
{% for post in site.security %}
{% unless post.title == 'security index' %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}"> {{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>