summaryrefslogtreecommitdiff
path: root/_site_build/_includes
diff options
context:
space:
mode:
authordavidtsadler <davidtsadler@googlemail.com>2011-12-30 00:55:09 +0000
committerdavidtsadler <davidtsadler@googlemail.com>2011-12-30 00:55:09 +0000
commit1769e1cdcfe58339eb6ff7f13925090edaa8a4a8 (patch)
treee2692dd6f483f9e57d41a34183c71198772d6f93 /_site_build/_includes
parent4f363292ad67daa9f1b009ed6453567894157257 (diff)
Add archives page and ordinalize plugin.
Diffstat (limited to '_site_build/_includes')
-rw-r--r--_site_build/_includes/post_excerpt.html4
-rw-r--r--_site_build/_includes/sidebar.html1
2 files changed, 3 insertions, 2 deletions
diff --git a/_site_build/_includes/post_excerpt.html b/_site_build/_includes/post_excerpt.html
index 7edb5a0..a8ef58e 100644
--- a/_site_build/_includes/post_excerpt.html
+++ b/_site_build/_includes/post_excerpt.html
@@ -1,8 +1,8 @@
<article class="excerpt">
<header>
<h1>{{ post.title }}</h1>
- <time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%A, %d %B, %Y' }}</time>
+ <time datetime="{{ post.date | date: '%Y-%m-%d' }}" pubdate>{{ post.date | date: '%A' }} {{ post.date | ordinalize }} {{ post.date | date: '%B, %Y' }}</time>
</header>
{{ post.content | text_excerpt }}
- <a href="{{ post.url }}" title="{{ post.title }}">Click to continue reading &raquo;</a></li>
+ <a href="{{ post.url }}" target="_self" title="{{ post.title }}">Click to continue reading &raquo;</a>
</article>
diff --git a/_site_build/_includes/sidebar.html b/_site_build/_includes/sidebar.html
index a8fa207..0789325 100644
--- a/_site_build/_includes/sidebar.html
+++ b/_site_build/_includes/sidebar.html
@@ -3,6 +3,7 @@
<h2>Links</h2>
<ul>
<li><a href="/" rel="home" target="_self" title="{{ site.title }}">Home</a></li>
+ <li><a href="/archives.html" target="_self" title="Archives">Archives</a></li>
<li><a href="/about.html" rel="author" target="_self" title="About {{ site.author }}">About</a></li>
</ul>
</nav>