templates/Curso/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3. {{ parent() }} - Aulas Virtuales
  4. {% endblock %}
  5. {% block contenido %} 
  6.      
  7. {% include "default/alertasFlash.html.twig" %}
  8.  
  9. {# Muestro los Cursos #}
  10.  {% include "Curso/listarCursos.html.twig" with { 'cursos' : cursos , 'nombre': 'Aulas Virtuales'  } %}
  11. {# Muestro los Cursos #}
  12. {# Botones de Direccionamiento #}
  13. <div class="offset-s2 col s8 offset-s2">
  14.     <center>      
  15.       <a href="{{ path('index') }}" class="waves-effect waves-light btn-small colorOficial white-text">
  16.        <i class="material-icons left">home</i>Volver al Home
  17.       </a> 
  18.     </center>
  19. </div>
  20. {# Botones de Direccionamiento #}
  21. <br>
  22. <br>
  23. {% endblock %}