mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 04:20:10 +01:00
34 lines
888 B
Text
34 lines
888 B
Text
|
---
|
||
|
layout: default
|
||
|
---
|
||
|
<article {% if page.feature-img or page.color %}class="feature-image" {% endif %}>
|
||
|
<header id="main" style="">
|
||
|
<div class="title-padder">
|
||
|
{% if page.hide_title %}
|
||
|
<div class="feature-image-padding"></div>
|
||
|
{% else %}
|
||
|
<h1 id="{{ page.title | cgi_escape }}" class="title">{{ page.title }}</h1>
|
||
|
{% include blog/post_info.liquid author=page.author date=page.date %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<section class="post-content">
|
||
|
{% if page.bootstrap %}
|
||
|
<div class="bootstrap-iso">
|
||
|
{% endif %}
|
||
|
{{ content }}
|
||
|
{% if page.bootstrap %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</section>
|
||
|
|
||
|
<!-- Social media shares -->
|
||
|
{% include social/share_buttons.liquid %}
|
||
|
|
||
|
<!-- Tag list -->
|
||
|
{% capture tag_list %}{{ page.tags | join: "|"}}{% endcapture %}
|
||
|
{% include default/tags_list.liquid tags=tag_list %}
|
||
|
|
||
|
</article>
|