From 9ad3f9ee3e7d96c39b23c9b67f856d55943eb302 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 11 Oct 2014 19:01:16 -0500 Subject: [PATCH] Add tags to posts. --- _layouts/post.html | 7 ++++--- _posts/2011-06-23-oh-look-a-blog.md | 1 + _posts/2011-08-05-earwigbot-progress-wiki-toolset.md | 1 + _posts/2011-08-23-earwigbot-progress-page-editing.md | 1 + _posts/2012-01-29-earwigbot-and-toolserver-updates.md | 1 + _posts/2014-06-01-obfuscating-hello-world.md | 1 + _posts/2014-08-20-copyvio-detector.md | 1 + index.html | 8 +++++++- static/main.css | 15 +++++++++++++++ 9 files changed, 32 insertions(+), 4 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index fbb96cd..4402fde 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -4,9 +4,10 @@ layout: base

{{ page.title }}

-
- Date: {{ page.date | date: "%B %-d, %Y" }} -
+
{{ content }}
diff --git a/_posts/2011-06-23-oh-look-a-blog.md b/_posts/2011-06-23-oh-look-a-blog.md index 6dcad2c..512f5a4 100644 --- a/_posts/2011-06-23-oh-look-a-blog.md +++ b/_posts/2011-06-23-oh-look-a-blog.md @@ -1,6 +1,7 @@ --- layout: post title: Oh Look, A Blog! +tags: Misc description: Just kinda playing with the idea of my own site right now --- diff --git a/_posts/2011-08-05-earwigbot-progress-wiki-toolset.md b/_posts/2011-08-05-earwigbot-progress-wiki-toolset.md index 83a51c9..b31a21b 100644 --- a/_posts/2011-08-05-earwigbot-progress-wiki-toolset.md +++ b/_posts/2011-08-05-earwigbot-progress-wiki-toolset.md @@ -1,6 +1,7 @@ --- layout: post title: EarwigBot Progress: Wiki Toolset +tags: Wikipedia description: YAWTF (Yet Another Wiki Tools Framework, or Yet Another... WTF?) --- diff --git a/_posts/2011-08-23-earwigbot-progress-page-editing.md b/_posts/2011-08-23-earwigbot-progress-page-editing.md index e576dfa..d2665ec 100644 --- a/_posts/2011-08-23-earwigbot-progress-page-editing.md +++ b/_posts/2011-08-23-earwigbot-progress-page-editing.md @@ -1,6 +1,7 @@ --- layout: post title: EarwigBot Progress: Page Editing +tags: Wikipedia description: Exactly what it says on the tin --- diff --git a/_posts/2012-01-29-earwigbot-and-toolserver-updates.md b/_posts/2012-01-29-earwigbot-and-toolserver-updates.md index b9aeee4..29a87f8 100644 --- a/_posts/2012-01-29-earwigbot-and-toolserver-updates.md +++ b/_posts/2012-01-29-earwigbot-and-toolserver-updates.md @@ -1,6 +1,7 @@ --- layout: post title: EarwigBot and Toolserver Updates +tags: Wikipedia description: More progress on EarwigBot and the Toolserver site rewrite, including dynamic backgrounds --- diff --git a/_posts/2014-06-01-obfuscating-hello-world.md b/_posts/2014-06-01-obfuscating-hello-world.md index fcb7c82..ebcf560 100644 --- a/_posts/2014-06-01-obfuscating-hello-world.md +++ b/_posts/2014-06-01-obfuscating-hello-world.md @@ -1,6 +1,7 @@ --- layout: post title: Obfuscating "Hello world!" +tags: Python description: Fun with functional programming in Python --- diff --git a/_posts/2014-08-20-copyvio-detector.md b/_posts/2014-08-20-copyvio-detector.md index 88dfe64..67169db 100644 --- a/_posts/2014-08-20-copyvio-detector.md +++ b/_posts/2014-08-20-copyvio-detector.md @@ -1,6 +1,7 @@ --- layout: post title: Copyvio Detector +tags: Wikipedia description: A technical writeup of some recent developments --- diff --git a/index.html b/index.html index 606b556..267718f 100644 --- a/index.html +++ b/index.html @@ -136,9 +136,15 @@ title: Home

Posts

+
+ Tags: + {% for tag in site.tags %} + {{tag[0]}} + {% endfor %} +
diff --git a/static/main.css b/static/main.css index f8dd9c0..1081acf 100644 --- a/static/main.css +++ b/static/main.css @@ -98,6 +98,21 @@ a.underlined:hover, a.underlined:active { text-decoration: none; } font-size: 14px; } +#post-info { + list-style-type: none; + margin: 0; + padding-left: 0; +} + +#post-info li { + line-height: 1em; + margin-bottom: 0.5em; +} + +#post-info li:last-child { + margin-bottom: 0; +} + #post-info span { color: #777; }