aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html4
-rw-r--r--_layouts/page.html3
-rw-r--r--_layouts/post.html8
3 files changed, 10 insertions, 5 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index d7f8c43..fd55250 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -21,13 +21,13 @@
<body>
<header class="masthead">
- <img src="{{ site.avatar }}" class="avatar" />
+ <a href="/" class="site-name"><img src="{{ site.avatar }}" class="avatar" /></a>
<a href="/" class="site-name">{{ site.name }}</a>
<p class="site-description">{{ site.description }}</p>
<nav>
<a href="/">Blog</a>
- <a href="/about">About</a>
+ <a href="/about">About Me</a>
</nav>
<div style="clear:both;"></div>
diff --git a/_layouts/page.html b/_layouts/page.html
index 9b67cad..cff5360 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -3,7 +3,8 @@ layout: default
---
<article class="page">
- <header><h1>{{ page.title }}</h1></header>
+
+ <h1>{{ page.title }}</h1>
<div class="entry">
{{ content }}
diff --git a/_layouts/post.html b/_layouts/post.html
index 1384cce..d51134d 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -7,11 +7,15 @@ layout: default
<h1>{{ page.title }}</h1>
</header>
+ <div class="date">
+ {{ page.date | date: "%B %e, %Y" }}
+ </div>
+
<div class="entry">
{{ content }}
</div>
- <section id="comments">
+ <div class="comments">
{% include disqus.html disqus_identifier=page.disqus_identifier %}
- </section>
+ </div>
</article>