From 8698a276f937cb1cd6f67f7f213e2ea438500d7e Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Mon, 30 May 2011 00:30:16 -0400 Subject: Cleaned out public from repository, updated gitignore, added syntax highlighting tests, improved syntax highlighting and styling of pre blocks. Overriding dynamic gist styling. Added a plugin for pygments caching which should speed things up terrifically. added ender.js as a lightweight way of scripting the DOM, events, etc. Some general typography and semantic html improvements. --- source/_layouts/archive_yearly.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 source/_layouts/archive_yearly.html (limited to 'source/_layouts/archive_yearly.html') diff --git a/source/_layouts/archive_yearly.html b/source/_layouts/archive_yearly.html new file mode 100644 index 00000000..dabebebd --- /dev/null +++ b/source/_layouts/archive_yearly.html @@ -0,0 +1,25 @@ +--- +layout: default +--- +
+
+

{{ page.year }}

+

Posts from the year {{ page.year }}

+ {% for m in (1..12) reversed %} + {% if page.collated_posts[page.year][m] %} +

{{ m | date_to_month }}

+ {% for d in (1..31) reversed %} + {% if page.collated_posts[page.year][m][d] %} + {% for p in page.collated_posts[page.year][m][d] reversed %} +
+ {{ p.date | date: "%d" }} + {{ p.title }} +
+ {% endfor %} + {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +
+
+ -- cgit v1.2.1