{% extends 'base.twig' %}

{% block content %}
	{# Cabeçalho #}
	{% include "componentes/hero.twig" with {
		  	texto: post.meta('cabecalho_texto'),
		   links:[
			{
                title: 'Início',
                url: '/'
            },
			{
                title: post.title,
            },
		   ]
	} %}

	<section class="_pt-md _pb-md">
		<div class="Container">
			<div class="Row _gutters-x _gutters-y">
				{% for item in posts %}
					<div class="col-4">{% include "componentes/card-segmento.twig" %}</div>
				{% endfor %}
			</div>
		</div>
	</section>

{% endblock %}
