diff --git a/_includes/blogpostheader.html b/_includes/blogpostheader.html index 85e977c..d3b0559 100644 --- a/_includes/blogpostheader.html +++ b/_includes/blogpostheader.html @@ -1,38 +1,47 @@ -{% capture title %} {% if page.title and page.title != "Home" %} {{ page.title -}} · {{ site.title }} {% else %} {{ site.title }} {% endif %} {% -endcapture %} {% capture description %} {% if page.date %} {{ page.date | date: -"%d.%m.%Y" }} {% endif %} {% if page.location %} / {{ page.location -}} {% endif %} {% endcapture %} {% if description == "" %} {% assign description -= site.description %} {% endif %} +{% capture title %} + {% if page.title and page.title != "Home" %} + {{ page.title }} · {{ site.title }} + {% else %} + {{ site.title }} + {% endif %} +{% endcapture %} + +{% capture description %} + {% if page.date %} + {{ page.date | date: "%d.%m.%Y" }} + {% endif %} + {% if page.location %} + / {{ page.location }} + {% endif %} +{% endcapture %} +{% if description == "" %} + {% assign description = site.description %} +{% endif %}
- - - - + + + +