templates/templates/index.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/master.html.twig" %}
  2. {% block pageHeader %}
  3.     {% include 'molecules/page-header.html.twig' with { title: 'Libro de estilo web da USC' } %}
  4. {% endblock %}
  5. {% block pageContent %}
  6. <section class="org-tier">
  7.   <div class="tier-header">
  8.       <h2 class="tier-title">Guía de estilo</h2>
  9.   </div>
  10.     <div class="tier-content">
  11.         <div class="org-modules-container has-banners">
  12.             {% include 'molecules/banners/m.html.twig' with {
  13.                 link: path('style-text'),
  14.                 title: 'Voz e ton',
  15.                 text: '',
  16.                 modifiers: ''
  17.             } %}
  18.             {% include 'molecules/banners/m.html.twig' with {
  19.                 link: path('style-image'),
  20.                 title: 'Imaxe',
  21.                 text: '',
  22.                 modifiers: ''
  23.             } %}
  24.         </div>
  25.     </div>
  26. </section>
  27.     <section class="org-tier">
  28.       <div class="tier-header">
  29.           <h2 class="tier-title">Guía de deseño frontend</h2>
  30.       </div>
  31.         <div class="tier-content">
  32.             <div class="org-modules-container has-banners">
  33.                 {% include 'molecules/banners/m.html.twig' with {
  34.                     link: path('docs_overview'),
  35.                     title: 'Introdución',
  36.                     text: '',
  37.                     modifiers: ''
  38.                 } %}
  39.                 {% include 'molecules/banners/m.html.twig' with {
  40.                     link: path('color_typography'),
  41.                     title: 'Cores e tipografías',
  42.                     text: '',
  43.                     modifiers: ''
  44.                 } %}
  45.                 {% include 'molecules/banners/m.html.twig' with {
  46.                     link: path('docs_layout'),
  47.                     title: 'Layout e retícula',
  48.                     text: '',
  49.                     modifiers: ''
  50.                 } %}
  51.                 {% include 'molecules/banners/m.html.twig' with {
  52.                     link: path('docs_atoms'),
  53.                     title: 'Átomos',
  54.                     text: '',
  55.                     modifiers: ''
  56.                 } %}
  57.                 {% include 'molecules/banners/m.html.twig' with {
  58.                     link: path('docs_molecules'),
  59.                     title: 'Moléculas',
  60.                     text: '',
  61.                     modifiers: ''
  62.                 } %}
  63.                 {% include 'molecules/banners/m.html.twig' with {
  64.                     link: path('docs_organisms'),
  65.                     title: 'Organismos',
  66.                     text: '',
  67.                     modifiers: ''
  68.                 } %}
  69.                 {% include 'molecules/banners/m.html.twig' with {
  70.                     link: path('index_models'),
  71.                     title: 'Plantillas',
  72.                     text: 'Modelos de páxinas',
  73.                     modifiers: ''
  74.                 } %}
  75.                 {% include 'molecules/banners/m.html.twig' with {
  76.                     link: path('index_pages'),
  77.                     title: 'Páxinas de exemplo',
  78.                     text: '',
  79.                     modifiers: ''
  80.                 } %}
  81.             </div>
  82.         </div>
  83.     </section>
  84. {% endblock %}