added a security thoughts section

This commit is contained in:
Brendan McDevitt 2020-12-17 20:18:00 -05:00
parent 3e78245041
commit d1043e01c8

View file

@ -21,6 +21,13 @@ title: brendan mcdevitt
<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>
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}"> {{ post.title }}</a></li>
{% endfor %}
</ul>
<h1>Security Thoughts</h1>
<ul class="security">
{% for post in site.security %}
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}"> {{ post.title }}</a></li>
{% endfor %}
</ul>