{% if page.vars %}{% include {{ page.vars | prepend: "vars/" }} %}{% endif %}
<title>{% if pretitle %}{{ pretitle }} • {% endif %}{{ title }}</title>
- {% if page.excerpt %}<meta name="description" content="{{ page.excerpt | newline_to_br | replace:'<br />',' ' | strip_html | strip_newlines | truncate: 160 }}">{% endif %}
+ {% if page.excerpt %}<meta name="description" content="{{ page.excerpt | newline_to_br | replace:'<br />',' ' | strip_html | strip_newlines | truncate: 192 }}">{% endif %}
<link rel="stylesheet" href="{{ site.baseurl }}/style.css">
<link rel="canonical" href="{{ site.url }}{{ site.baseurl }}{{ page.url | replace:'/index.html','/' }}">
{% comment %} Unfortunately, the variables we set above are not preserved for sub-layouts. So, we have to have all the layout here. {% endcomment %}
{% if pretitle %}
<header class="pretitle">
- {% if page.date %}
- <div class="side"><a href="{{ site.baseurl }}{{ page.url }}">Permalink</a> • {{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</div>
+ {% if page.post %}
+ {% include post-header.html item=page %}
{% endif %}
<h1>{{ pretitle }}</h1>
</header>
</header>
{{ content }}
+
+ {% if page.post %}<p class="comment">Comments? <a href="mailto:post-AT-ralfj-DOT-de">Drop me a mail</a>!</p>{% endif %}
</article>
</div></body>