{% extends 'templates/layouts/page.njk' %}

{% set pageProps = {
  h1: 'Widgets'
} %}

{% block content %}
  {% from 'templates/partials/content/standard-widgets.njk' import StandardWidgetsPartial %}
{#  {% import 'components/news/news.njk' as NewsBuilder %}#}
{#  {% import 'components/events/events.njk' as EventsBuilder %}#}
  {% from 'components/rte/rte.njk' import RTE %}

  <!-- WIDGETS ZONE START --->
  {{ StandardWidgetsPartial() }}
{#  {{ NewsBuilder.NewsCarouselSection({#}
{#    title: 'Last posts',#}
{#    actionText: 'View all posts'#}
{#  }) }}#}
{#  {{ EventsBuilder.EventsCarouselSection() }}#}
{% endblock %}
