From 208821cda116bab74e657d6f0c2cd7c23eff9610 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 3 Feb 2018 13:40:30 -0500 Subject: 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. --- _layouts/blog.html | 36 ------------------------------------ _layouts/master.html | 32 +------------------------------- _layouts/post.html | 28 ++++------------------------ 3 files changed, 5 insertions(+), 91 deletions(-) delete mode 100644 _layouts/blog.html (limited to '_layouts') diff --git a/_layouts/blog.html b/_layouts/blog.html deleted file mode 100644 index 21ff3e7..0000000 --- a/_layouts/blog.html +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: master ---- -
- ../ -
-
- {{ content }} -
- diff --git a/_layouts/master.html b/_layouts/master.html index 53c83f0..d762aad 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -3,44 +3,14 @@ {{ page.title }} - - + - - - - - - - - - - - - - - - - - - - - - - {% if page.chrome-webstore-item %} - - {% endif %} {{ content }} - - diff --git a/_layouts/post.html b/_layouts/post.html index 1449d39..b3dd0c1 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,29 +1,9 @@ --- -layout: blog +layout: master --- -
-

{{ page.title }}

-

+

{{page.title}}

+

{{page.date | date: "%Y-%m-%d"}}

-
- {{ content }} -
-
+{{content}} - -- cgit v1.2.3