switched h1 to h2 for posts, removed unnecesary css classes, check if author exists
This commit is contained in:
parent
824a33e9fc
commit
12d6e318c0
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
<div class="post">
|
<div class="post singlepost">
|
||||||
|
<header>
|
||||||
<header class="post-header">
|
<h2>{{ page.title }}</h2>
|
||||||
<h1 class="post-title">{{ page.title }}</h1>
|
<p>{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
|
||||||
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
|
|
||||||
</header>
|
</header>
|
||||||
|
<article>
|
||||||
<article class="post-content">
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,6 +6,6 @@ post_author: timm
|
|||||||
---
|
---
|
||||||
|
|
||||||
Falls ihr irgendwem irgendwas beibringen wollt, meldet euch!
|
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!
|
Wir brauchen eure Hilfe!
|
@ -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!
|
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!
|
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!
|
Auf ein exzellentes HIP-0!
|
@ -80,6 +80,10 @@ a, .navbar-default .navbar-nav li a, .navbar-nav > li > a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.singlepost {
|
||||||
|
margin-top:60px;
|
||||||
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
ul {
|
ul {
|
||||||
|
@ -12,7 +12,7 @@ layout: default
|
|||||||
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p class="date">
|
<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>
|
</p>
|
||||||
{{ post.content }}
|
{{ post.content }}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user