{% if sidebar.recent_posts is defined and sidebar.recent_posts|length > 0 %}

{{ __('Recent Posts') }}

    {% for post in sidebar.recent_posts %}
  • {{ post.title }}
    {{ post.date }}
  • {% endfor %}

{% endif %}

{{ __('Search') }}

{% include 'partials/search-form.html.twig' %}

{% if sidebar.tags is defined and sidebar.tags|length > 0 %}

{{ __('Tags') }}

{% for tag in sidebar.tags %} {{ tag.name }} {% endfor %}
{% endif %}