{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_body_classes %}
{{ parent() }} {{ theme_config('rhweb-custom-body-class') }}
{% endblock %}
{% block base_header %}
{% block layout_top_bar %}
<div class="rhweb-topbar">
<div class="container">
{% sw_include '@Storefront/storefront/layout/header/top-bar.html.twig' %}
</div>
</div>
{% endblock %}
{{ parent() }}
{% endblock %}
{% block base_footer %}
{% if theme_config('rhweb-footer-activate-newsletter') and theme_config('rhweb-newsletter-position') != 'column' %}
{% sw_include '@Storefront/storefront/rhweb-custom/snippets/footer/rhweb-newsletter.html.twig' with{
position: 'footer-above'
} %}
{% endif %}
{{ parent() }}
{% endblock %}
{% block base_body_script %}
{{ parent() }}
{% if theme_config('rhweb-custom-js') %}
<script>
{{ theme_config('rhweb-custom-js') | raw }}
</script>
{% endif %}
{% endblock %}