summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2018-02-03 13:40:30 -0500
committerBen Burwell <ben@benburwell.com>2018-02-03 13:40:30 -0500
commit208821cda116bab74e657d6f0c2cd7c23eff9610 (patch)
tree2270d719e66c2c45a2cb55f53584795f0cd4f4d3 /posts
parent72f8e1da25566bb7f9f6df4ff75b5ed0bb015fd2 (diff)
Vastly simplify site
I was getting tired of feeling like I should put things on my website and keep it up to date, so I decided to slim it down significantly (from its already admittedly slim state). No CSS, no JavaScript, just plain old HTML. The posts are staying for now, though I haven't linked to them from anywhere. Thus they won't be easily discoverable, but any links that are out there right now shouldn't break. I've also removed my resume from the site.
Diffstat (limited to 'posts')
-rw-r--r--posts/index.html14
1 files changed, 4 insertions, 10 deletions
diff --git a/posts/index.html b/posts/index.html
index 6d0eff3..ddf174d 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -1,19 +1,13 @@
---
-layout: blog
+layout: master
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
-redirect_from: /writing/
---
<h1>Posts</h1>
+<ul>
{% for post in site.posts %}
-<div class="post">
- <div class="post-date">
- <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%-d %B %Y" }}</time>
- </div>
- <div class="post-title">
- <a href="{{ post.url }}">{{ post.title }}</a>
- </div>
-</div>
+ <li>{{post.date | date: "%Y-%m-%d"}} <a href="{{post.url}}">{{post.title}}</a></li>
{% endfor %}
+</ul>