# HG changeset patch
# User Steve Losh <steve@stevelosh.com>
# Date 1261784876 18000
# Node ID 3c85041c61c2b023bbfa9ba7ce74d947ecb98b50
# Parent  a5d03615074978388880990853bc42a866bc413d
Add the post stats.

diff -r a5d036150749 -r 3c85041c61c2 layout/_post.html
--- a/layout/_post.html	Fri Dec 25 15:26:28 2009 -0500
+++ b/layout/_post.html	Fri Dec 25 18:47:56 2009 -0500
@@ -3,6 +3,8 @@
 {% block content %}
     <div id="leaf-title"><h1>{{ page.title|safe|typogrify }}</h1></div>
     
+    <div id="leaf-stats"><p>Posted on {{ page.created|date:"l, F j, Y" }} ({{ page.created|timesince }} ago).</p></div>
+    
     <div id="leaf-content">
         {% filter typogrify %}
             {% article %}
diff -r a5d036150749 -r 3c85041c61c2 media/css/base.css
--- a/media/css/base.css	Fri Dec 25 15:26:28 2009 -0500
+++ b/media/css/base.css	Fri Dec 25 18:47:56 2009 -0500
@@ -179,7 +179,14 @@
     
 }
 span.page-title span.amp {
-	font-weight: normal;
+    font-weight: normal;
     font-size: 1.1em;
-	line-height: 0.5em;
+    line-height: 0.5em;
+}
+
+/* Article styles. */
+div#leaf-stats p {
+    color: #666;
+    margin-top: -1em;
+    margin-bottom: 1em;
 }
\ No newline at end of file