made markup a slightly more sane

This commit is contained in:
2010-02-12 20:09:22 +02:00
parent dfda01f7aa
commit 45b8e11ddb
4 changed files with 11 additions and 4 deletions

View File

@@ -35,7 +35,7 @@
</div>
</div>
<div class="recent-articles">
<h5>Recent Articles</h5>
<h2>Recent Articles</h2>
<dl class="labels">
{% for post in site.posts limit:8 %}
<dt>{{ post.date | date: "%d %b" }}</dt>

View File

@@ -19,7 +19,10 @@
<p class="date">{{ page.date | date: "<i>%d</i><b>%b</b>" }}</p>
</div>
<h1 class="post-title">{{ page.title }}<span class="author">by Jim Myhrberg</span></h1>
<h1 class="post-title">
{{ page.title }}
<span class="author">by Jim Myhrberg</span>
</h1>
<div class="post-content">
{{ content }}

View File

@@ -9,7 +9,10 @@ title: jimeh / blog
<p class="date">{{ post.date | date: "<i>%d</i><b>%b</b>" }}</p>
</div>
<h1 class="post-title"><a href="/blog{{ post.url }}">{{ post.title }}</a><span class="author">by Jim Myhrberg</span></h1>
<h1 class="post-title">
<a href="/blog{{ post.url }}">{{ post.title }}</a>
<span class="author">by Jim Myhrberg</span>
</h1>
<div class="post-content">
{{ post.content }}

View File

@@ -689,7 +689,8 @@ blockquote {
.recent-articles {
font-size: 13px;
}
.recent-articles h5 {
.recent-articles h2 {
font-size: 17px;
margin-bottom: 3px;
margin-left: 25px;
}