Adjusting heading hierarchy to reflect site-title change

This commit is contained in:
kleinfreund 2014-08-04 09:42:46 +02:00
parent 101d614351
commit 020f684093
3 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ layout: default
<div class="post">
<header class="post-header">
<h2>{{ page.title }}</h2>
<h1 class="post-title">{{ page.title }}</h1>
</header>
<article class="post-content">

View File

@ -4,7 +4,7 @@ layout: default
<div class="post">
<header class="post-header">
<h2 class="post-title">{{ page.title }}</h2>
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>

View File

@ -4,16 +4,16 @@ layout: default
<div class="home">
<h2 class="page-heading">Posts</h2>
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h3>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
</h2>
</li>
{% endfor %}
</ul>