switched h1 to h2 for posts, removed unnecesary css classes, check if author exists

This commit is contained in:
Timm Szigat
2015-09-09 08:23:43 +02:00
parent 824a33e9fc
commit 12d6e318c0
5 changed files with 12 additions and 11 deletions

View File

@ -12,7 +12,7 @@ layout: default
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<p class="date">
{{ post.date | date: "%b %-d, %Y" }} {{ post.post_author }}
{{ post.date | date: "%b %-d, %Y" }} {{if post.post_author}} - {{ post.post_author }}{{/if}}
</p>
{{ post.content }}
</div>