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.

16 lines
698 B

{% set feed_url = blog.url == '/' or blog.url == base_url_relative ? (base_url_relative~'/'~blog.slug) : blog.url %}
{% set new_base_url = blog.url == '/' ? '' : blog.url %}
{# multi-course hub compatibility - hibbittsdesign.org #}
{% set arrayofpath = uri.path|split('/') %}
{% set firstfolderofpath = arrayofpath[1] %}
{% if firstfolderofpath == null %}
{% set arrayofpath = config.system.home.alias|split('/') %}
{% set firstfolderofpath = arrayofpath[1] %}
{% endif %}
{% set content = pages.find('/' ~ firstfolderofpath ~ '/sidebar').content %}
{% if content is empty %}
{% set content = pages.find('/sidebar').content %}
{% endif %}
<div class="sidebar-content">
{{ content }}
</div>