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

@ -1,15 +1,12 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<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>
<div class="post singlepost">
<header>
<h2>{{ page.title }}</h2>
<p>{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>
<article class="post-content">
<article>
{{ content }}
</article>
</div>

View File

@ -6,6 +6,6 @@ post_author: timm
---
Falls ihr irgendwem irgendwas beibringen wollt, meldet euch!
Trag euch (demnächst) ins Wiki ein, was auch immer.
Trag euch ins [Wiki](https://wiki.hackimpott.de) ein, melder euch bei der [Orga](mailto:orga@chaospott.de), was auch immer.
Wir brauchen eure Hilfe!

View File

@ -11,7 +11,7 @@ Deswegen laden wir euch zu uns ein. Am 26.-28. Februar veranstalten wir das erst
Allerdings kann da noch viel viel mehr!
Eintrittsspende 13,37€. Dafür gibts ewiges Frühstück (u.a. ein Pott voll Mett, auch vegan) und Kaffee.
Unkostenbeitrag 13,37€. Dafür erwartet euch ewiges Frühstück (u.a. ein Pott voll Mett, auch vegan) und Kaffee.
Der Platz für die erste Iteration ist stark begrenzt, so das wir nur 42 Plätze für das gesamte Event haben. First come, first serve, Voranmeldung demnächst!
Auf ein exzellentes HIP-0!

View File

@ -80,6 +80,10 @@ a, .navbar-default .navbar-nav li a, .navbar-nav > li > a {
}
}
.singlepost {
margin-top:60px;
}
.footer {
padding: 20px;
ul {

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>