{% extends 'base.html.twig' %}
{% block title %}
{{ parent() }} - Tienda
{% endblock %}
{% block contenido %}
{% include "default/alertasFlash.html.twig" %}
{# Muestro los Productos #}
{% include "Producto/listarProductos.html.twig" with { 'productos' : productos } %}
{# Muestro los Productos #}
{# Botones de Direccionamiento #}
<div class="offset-s2 col s8 offset-s2">
<center>
<a href="{{ path('index') }}" class="waves-effect waves-light btn-small colorOficial white-text">
<i class="material-icons left">home</i>Volver al Home
</a>
</center>
</div>
{# Botones de Direccionamiento #}
<br>
<br>
{% endblock %}