53 lines
1.7 KiB
HTML
53 lines
1.7 KiB
HTML
|
|
---
|
||
|
|
layout: default
|
||
|
|
---
|
||
|
|
|
||
|
|
<!-- Page Header -->
|
||
|
|
{% if page.background %}
|
||
|
|
<header class="masthead" style="background-image: url('{{ page.background | prepend: site.baseurl | replace: '//', '/' }}')">
|
||
|
|
{% else %}
|
||
|
|
<header class="masthead">
|
||
|
|
{% endif %}
|
||
|
|
<div class="overlay"></div>
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-lg-8 col-md-10 mx-auto">
|
||
|
|
<div class="post-heading">
|
||
|
|
<h1>{{ page.title }}</h1>
|
||
|
|
{% if page.subtitle %}
|
||
|
|
<h2 class="subheading">{{ page.subtitle }}</h2>
|
||
|
|
{% endif %}
|
||
|
|
<span class="meta">Geschrieben von
|
||
|
|
<a href="#">{% if page.author %}{{ page.author }}{% else %}{{ site.author }}{% endif %}</a>
|
||
|
|
am {{ page.date | date: '%d.%m.%Y' }}
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-lg-8 col-md-10 mx-auto">
|
||
|
|
|
||
|
|
{{ content }}
|
||
|
|
|
||
|
|
<hr>
|
||
|
|
|
||
|
|
<div class="clearfix">
|
||
|
|
|
||
|
|
{% if page.previous.url %}
|
||
|
|
<a class="btn btn-primary float-left" href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{ page.previous.title }}">← Previous<span class="d-none d-md-inline">
|
||
|
|
Post</span></a>
|
||
|
|
{% endif %}
|
||
|
|
{% if page.next.url %}
|
||
|
|
<a class="btn btn-primary float-right" href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{ page.next.title }}">Next<span class="d-none d-md-inline">
|
||
|
|
Post</span> →</a>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|