theme, plugins und config für die Webseite der Baptisten Hohenacker
https://baptisten-hohenacker.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
905 B
33 lines
905 B
{% embed 'partials/base.html.twig' %} |
|
|
|
{% set base_url = page.parent.url %} |
|
{% set feed_url = base_url %} |
|
|
|
{% if base_url == '/' %} |
|
{% set base_url = '' %} |
|
{% endif %} |
|
|
|
{% if base_url == base_url_relative %} |
|
{% set feed_url = base_url~'/'~page.parent.slug %} |
|
{% endif %} |
|
|
|
{% block content %} |
|
<div class="container"> |
|
|
|
<div class="row"> |
|
<div class="col-sm-8 blog-main"> |
|
{% if config.plugins.breadcrumbs.enabled %} |
|
{% include 'partials/breadcrumbs.html.twig' %} |
|
{% endif %} |
|
|
|
{% include 'partials/blog_item.html.twig' with {'blog':page.parent, 'truncate':false, 'big_header':true} %} |
|
</div> |
|
|
|
<div class="col-sm-3 col-sm-offset-1 blog-sidebar"> |
|
{% include 'partials/sidebar.html.twig' with {'blog':page.parent}%} |
|
</div> |
|
</div> |
|
</div> |
|
{% endblock %} |
|
|
|
{% endembed %}
|
|
|