{% import '_helpers/_image_webp' as media %}
<div class="right-column col-md-3">

    <!-- RIGHT SIDEBAR : begin -->
    <aside class="sidebar">
        <div class="widget-list">
            {# Posts Widget #}
            {% if entry.type == 'galleryItems'
               or entry.showNews
            %}
                {% include '_layout/_components/_blocks/news-block' %}
            {% endif %}
            {# Categories Widget #}
            {% if entry.type == "news" or entry.type == 'newsDetail' %}
                {% include 'news/_components/categories' %}
            {% endif %}
            {# Images Links Widget #}
            {% include '_layout/_components/_blocks/images-links' %}

            {% if entry.type != 'newsDetail'
                and entry.type != 'galleryItems'
                and entry.showGallery
            %}
                {% include '_layout/_components/_blocks/gallery' %}
            {% endif %}

        </div>
    </aside>
    <!-- RIGHT SIDEBAR : end -->

</div>