Skip to content

Commit

Permalink
h2 and no clearfix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesmarshall committed Jan 23, 2010
1 parent 604c8cf commit 198fe8e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion general.html
Expand Up @@ -19,7 +19,7 @@

{% for post in site.categories.general %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -22,7 +22,7 @@

{% for post in site.posts limit: 5 %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion jquery.html
Expand Up @@ -21,7 +21,7 @@

{% for post in site.categories.jquery %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion motorsport.html
Expand Up @@ -22,7 +22,7 @@

{% for post in site.categories.motorsport %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion rant.html
Expand Up @@ -22,7 +22,7 @@

{% for post in site.categories.rant %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion web.html
Expand Up @@ -22,7 +22,7 @@

{% for post in site.categories.web %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down
2 changes: 1 addition & 1 deletion work.html
Expand Up @@ -23,7 +23,7 @@

{% for post in site.categories.work %}
<div class="post row {{ post.category }} clearfix">
<h3 class='clearfix'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<h2 class='title'><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class='clearfix summary'>
<h5 class='date curvy'>{{ post.date | date_to_string }}</h5>
<h6 class='curvy'><a href='/{{ post.category | downcase }}.html' title='{{ post.category | downcase }}'>{{ post.category | downcase }}</a></h6>
Expand Down

0 comments on commit 198fe8e

Please sign in to comment.