templates/templates/index-models.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 {
  4.         breadcrumb: [
  5.             { path: path('index'), title: 'Libro de estilo web da USC' }
  6.         ],
  7.         title: 'Plantillas (modelos de páxinas)'
  8.     } %}
  9. {% endblock %}
  10. {% block pageContent %}
  11.     <section class="org-tier">
  12.         <div class="tier-header">
  13.             <h2 class="tier-title">Portadas</h2>
  14.         </div>
  15.         <div class="tier-content">
  16.             <div class="org-modules-container has-banners">
  17.                 {% include 'molecules/banners/m.html.twig' with {
  18.                     link: path('frontpage'),
  19.                     title: 'Portada',
  20.                     text: '',
  21.                     modifiers: ''
  22.                 } %}
  23.                 {% include 'molecules/banners/m.html.twig' with {
  24.                     link: path('profile_frontpage'),
  25.                     title: 'Perfil',
  26.                     text: '',
  27.                     modifiers: ''
  28.                 } %}
  29.                 {% include 'molecules/banners/m.html.twig' with {
  30.                     link: path('campusc_frontpage'),
  31.                     title: 'CampUSC',
  32.                     text: '',
  33.                     modifiers: ''
  34.                 } %}
  35.             </div>
  36.         </div>
  37.     </section>
  38.     <section class="org-tier">
  39.         <div class="tier-header">
  40.             <h2 class="tier-title">Subportadas</h2>
  41.         </div>
  42.         <div class="tier-content">
  43.             <div class="org-modules-container has-banners">
  44.                 {% include 'molecules/banners/m.html.twig' with {
  45.                     link: path('level2'),
  46.                     title: 'Subportadas',
  47.                     text: '',
  48.                     modifiers: ''
  49.                 } %}
  50.                 {% include 'molecules/banners/m.html.twig' with {
  51.                     link: path('level3'),
  52.                     title: 'Nivel 3',
  53.                     text: '',
  54.                     modifiers: ''
  55.                 } %}
  56.                 {% include 'molecules/banners/m.html.twig' with {
  57.                     link: path('level4'),
  58.                     title: 'Nivel 4',
  59.                     text: '',
  60.                     modifiers: ''
  61.                 } %}
  62.             </div>
  63.         </div>
  64.     </section>
  65.     <section class="org-tier">
  66.         <div class="tier-header">
  67.             <h2 class="tier-title">Páxinas de contido</h2>
  68.         </div>
  69.         <div class="tier-content">
  70.             <div class="org-modules-container has-banners">
  71.                 {% include 'molecules/banners/m.html.twig' with {
  72.                     link: path('generic_page'),
  73.                     title: 'Xenérica',
  74.                     text: '',
  75.                     modifiers: ''
  76.                 } %}
  77.                 {% include 'molecules/banners/s.html.twig' with {
  78.                     link: path('generic_page_2_cols'),
  79.                     title: 'Xenérica con dúas columnas',
  80.                     text: '',
  81.                     modifiers: ''
  82.                 } %}
  83.                 {% include 'molecules/banners/s.html.twig' with {
  84.                     link: path('timeline'),
  85.                     title: 'Timeline',
  86.                     modifiers: ''
  87.                 } %}
  88.                 {% include 'molecules/banners/s.html.twig' with {
  89.                     link: path('course'),
  90.                     title: 'Estudos',
  91.                     text: '',
  92.                     modifiers: ''
  93.                 } %}
  94.                 {% include 'molecules/banners/s.html.twig' with {
  95.                     link: path('stats_page'),
  96.                     title: 'Datos',
  97.                     modifiers: ''
  98.                 } %}
  99.                 {% include 'molecules/banners/s.html.twig' with {
  100.                     link: path('service'),
  101.                     title: 'Servizos/ espazos/ entidades/ órganos...',
  102.                     text: '',
  103.                     modifiers: ''
  104.                 } %}
  105.             </div>
  106.         </div>
  107.     </section>
  108.     <section class="org-tier">
  109.         <div class="tier-header">
  110.             <h2 class="tier-title">Xornal</h2>
  111.         </div>
  112.         <div class="tier-content">
  113.             <div class="org-modules-container has-banners">
  114.                 {% include 'molecules/banners/m.html.twig' with {
  115.                     link: path('journal_frontpage'),
  116.                     title: 'Portada',
  117.                     text: ' ',
  118.                     modifiers: ''
  119.                 } %}
  120.                 {% include 'molecules/banners/s.html.twig' with {
  121.                     link: path('journal_frontpage_2'),
  122.                     title: 'Portada con dúas novas',
  123.                     text: ' ',
  124.                     modifiers: ''
  125.                 } %}
  126.                 {% include 'molecules/banners/s.html.twig' with {
  127.                     link: path('journal_external_news'),
  128.                     title: 'Está a pasar',
  129.                     text: '',
  130.                     modifiers: ''
  131.                 } %}
  132.                 {% include 'molecules/banners/s.html.twig' with {
  133.                     link: path('news_item'),
  134.                     title: 'Nova',
  135.                     text: '',
  136.                     modifiers: ''
  137.                 } %}
  138.                 {% include 'molecules/banners/s.html.twig' with {
  139.                     link: path('journal_dossier'),
  140.                     title: 'Dossier',
  141.                     text: '',
  142.                     modifiers: ''
  143.                 } %}
  144.                 {% include 'molecules/banners/s.html.twig' with {
  145.                     link: path('journal_section'),
  146.                     title: 'Subportada',
  147.                     text: ' ',
  148.                     modifiers: ''
  149.                 } %}
  150.                 {% include 'molecules/banners/s.html.twig' with {
  151.                     link: path('news_item_no_image'),
  152.                     title: 'Nova sen imaxe',
  153.                     text: '',
  154.                     modifiers: ''
  155.                 } %}
  156.             </div>
  157.         </div>
  158.     </section>
  159.     <section class="org-tier">
  160.         <div class="tier-header">
  161.             <h2 class="tier-title">Axenda</h2>
  162.         </div>
  163.         <div class="tier-content">
  164.             <div class="org-modules-container has-banners">
  165.                 {% include 'molecules/banners/m.html.twig' with {
  166.                     link: path('agenda_frontpage'),
  167.                     title: 'Portada de axenda',
  168.                     text: '',
  169.                     modifiers: ''
  170.                 } %}
  171.                 {% include 'molecules/banners/m.html.twig' with {
  172.                     link: path('agenda_search'),
  173.                     title: 'Resultados de búsqueda en axenda',
  174.                     text: 'Con formulario adaptado a Drupal',
  175.                     modifiers: ''
  176.                 } %}
  177.                 {% include 'molecules/banners/m.html.twig' with {
  178.                     link: path('event'),
  179.                     title: 'Evento',
  180.                     text: '',
  181.                     modifiers: ''
  182.                 } %}
  183.                 {% include 'molecules/banners/m.html.twig' with {
  184.                     link: path('event_no_media'),
  185.                     title: 'Evento sen imaxe',
  186.                     text: '',
  187.                     modifiers: ''
  188.                 } %}
  189.             </div>
  190.         </div>
  191.     </section>
  192.     <section class="org-tier">
  193.         <div class="tier-header">
  194.             <h2 class="tier-title">Buscadores e taboleiros</h2>
  195.         </div>
  196.         <div class="tier-content">
  197.             <div class="org-modules-container has-banners">
  198.                 {% include 'molecules/banners/m.html.twig' with {
  199.                     link: path('search_results'),
  200.                     title: 'Buscador xenérico',
  201.                     text: '',
  202.                     modifiers: ''
  203.                 } %}
  204.                 {% include 'molecules/banners/s.html.twig' with {
  205.                     link: path('board'),
  206.                     title: 'Taboleiro',
  207.                     text: '',
  208.                     modifiers: ''
  209.                 } %}
  210.                 {% include 'molecules/banners/m.html.twig' with {
  211.                     link: path('board_create'),
  212.                     title: 'Publicar anuncio',
  213.                     text: 'Con formulario adaptado a Drupal',
  214.                     modifiers: ''
  215.                 } %}
  216.                 {% include 'molecules/banners/m.html.twig' with {
  217.                     link: path('repository'),
  218.                     title: 'Directorio',
  219.                     text: 'Con formulario de Drupal',
  220.                     modifiers: ''
  221.                 } %}
  222.                 {% include 'molecules/banners/s.html.twig' with {
  223.                     link: path('board_drupal'),
  224.                     title: 'Taboleiro (Drupal)',
  225.                     text: '',
  226.                     modifiers: ''
  227.                 } %}
  228.             </div>
  229.         </div>
  230.     </section>
  231.     <section class="org-tier">
  232.         <div class="tier-header">
  233.             <h2 class="tier-title">Microsites</h2>
  234.         </div>
  235.         <div class="tier-content">
  236.             <div class="org-modules-container has-banners">
  237.                 {% include 'molecules/banners/m.html.twig' with {
  238.                     link: path('microsite_frontpage'),
  239.                     title: 'Portada',
  240.                     text: '',
  241.                     modifiers: ''
  242.                 } %}
  243.                 {% include 'molecules/banners/m.html.twig' with {
  244.                     link: path('microsite_frontpage_logos'),
  245.                     title: 'Portada con logos',
  246.                     text: 'Diferentes opcións de logotipos dispoñibles en portada',
  247.                     modifiers: ''
  248.                 } %}
  249.                 {% include 'molecules/banners/m.html.twig' with {
  250.                     link: path('microsite_level3'),
  251.                     title: 'Subportada',
  252.                     text: '',
  253.                     modifiers: ''
  254.                 } %}
  255.                 {% include 'molecules/banners/m.html.twig' with {
  256.                     link: path('microsite_level3_logos'),
  257.                     title: 'Subportada con logos',
  258.                     text: 'Diferentes opcións de logotipos dispoñibles en páxinas interiores',
  259.                     modifiers: ''
  260.                 } %}
  261.                 {% include 'molecules/banners/s.html.twig' with {
  262.                     link: path('microsite_generic_page'),
  263.                     title: 'Páxina de contido',
  264.                     text: '',
  265.                     modifiers: ''
  266.                 } %}
  267.                 {% include 'molecules/banners/s.html.twig' with {
  268.                     link: path('microsite_news_item'),
  269.                     title: 'Nova',
  270.                     text: '',
  271.                     modifiers: ''
  272.                 } %}
  273.                 {% include 'molecules/banners/s.html.twig' with {
  274.                     link: path('microsite_event'),
  275.                     title: 'Evento',
  276.                     text: '',
  277.                     modifiers: ''
  278.                 } %}
  279.             </div>
  280.         </div>
  281.     </section>
  282.     <section class="org-tier">
  283.         <div class="tier-header">
  284.             <h2 class="tier-title">CAS</h2>
  285.         </div>
  286.         <div class="tier-content">
  287.             <div class="org-modules-container has-banners">
  288.                 {% include 'molecules/banners/m.html.twig' with {
  289.                     link: path('site_cas_login_all_methods'),
  290.                     title: 'Login todos os métodos',
  291.                     text: '',
  292.                     modifiers: ''
  293.                 } %}
  294.                 {% include 'molecules/banners/m.html.twig' with {
  295.                     link: path('site_cas_login_all_methods_errors'),
  296.                     title: 'Login todos os métodos',
  297.                     text: 'Con mensaxes de erro',
  298.                     modifiers: ''
  299.                 } %}
  300.                 {% include 'molecules/banners/m.html.twig' with {
  301.                     link: path('site_cas_login_external'),
  302.                     title: 'Login a través de servizo externo',
  303.                     text: '',
  304.                     modifiers: ''
  305.                 } %}
  306.                 {% include 'molecules/banners/m.html.twig' with {
  307.                     link: path('site_cas_login_crendentials'),
  308.                     title: 'Login con credenciais',
  309.                     text: '',
  310.                     modifiers: ''
  311.                 } %}
  312.                 {% include 'molecules/banners/m.html.twig' with {
  313.                     link: path('site_cas_login_other_methods'),
  314.                     title: 'Login outros métodos',
  315.                     text: '',
  316.                     modifiers: ''
  317.                 } %}
  318.                 {% include 'molecules/banners/m.html.twig' with {
  319.                     link: path('site_cas_success'),
  320.                     title: 'Login correcto',
  321.                     text: '',
  322.                     modifiers: ''
  323.                 } %}
  324.                 {% include 'molecules/banners/m.html.twig' with {
  325.                     link: path('site_cas_error'),
  326.                     title: 'Erro no login',
  327.                     text: '',
  328.                     modifiers: ''
  329.                 } %}
  330.                 {% include 'molecules/banners/m.html.twig' with {
  331.                     link: path('site_cas_notices'),
  332.                     title: 'Avisos',
  333.                     text: '',
  334.                     modifiers: ''
  335.                 } %}
  336.                 {% include 'molecules/banners/m.html.twig' with {
  337.                     link: path('site_cas_notices_multi_action'),
  338.                     title: 'Avisos con máis dunha acción',
  339.                     text: '',
  340.                     modifiers: ''
  341.                 } %}
  342.             </div>
  343.         </div>
  344.     </section>
  345.     <section class="org-tier">
  346.         <div class="tier-header">
  347.             <h2 class="tier-title">Servizos</h2>
  348.         </div>
  349.         <div class="tier-content">
  350.             <div class="org-modules-container has-banners">
  351.                 {% include 'molecules/banners/m.html.twig' with {
  352.                     link: path('services-frontpage'),
  353.                     title: 'Portada',
  354.                     text: '',
  355.                     modifiers: ''
  356.                 } %}
  357.                 {% include 'molecules/banners/m.html.twig' with {
  358.                     link: path('services_level_2'),
  359.                     title: 'Subportada',
  360.                     text: '',
  361.                     modifiers: ''
  362.                 } %}
  363.                 {% include 'molecules/banners/m.html.twig' with {
  364.                     link: path('generic_facility'),
  365.                     title: 'Instalación xenérica',
  366.                     text: '',
  367.                     modifiers: ''
  368.                 } %}
  369.                 {% include 'molecules/banners/m.html.twig' with {
  370.                     link: path('services_program'),
  371.                     title: 'Programa',
  372.                     text: '',
  373.                     modifiers: ''
  374.                 } %}
  375.                 {% include 'molecules/banners/m.html.twig' with {
  376.                     link: path('services-program-with-activities'),
  377.                     title: 'Programa con actividades integradas',
  378.                     text: '',
  379.                     modifiers: ''
  380.                 } %}
  381.                 {% include 'molecules/banners/m.html.twig' with {
  382.                     link: path('services_activity'),
  383.                     title: 'Actividade',
  384.                     text: '',
  385.                     modifiers: ''
  386.                 } %}
  387.                 {% include 'molecules/banners/m.html.twig' with {
  388.                     link: path('services-activity-auto'),
  389.                     title: 'Actividade integrada',
  390.                     text: '',
  391.                     modifiers: ''
  392.                 } %}
  393.                 {% include 'molecules/banners/m.html.twig' with {
  394.                     link: path('special_facility_front_page'),
  395.                     title: 'Portada instalación singular',
  396.                     text: '',
  397.                     modifiers: ''
  398.                 } %}
  399.                 {% include 'molecules/banners/m.html.twig' with {
  400.                     link: path('areas_skin'),
  401.                     title: 'Skin Áreas',
  402.                     text: '',
  403.                     modifiers: ''
  404.                 } %}
  405.                 {% include 'molecules/banners/m.html.twig' with {
  406.                     link: path('services_skin'),
  407.                     title: 'Skin Servizos',
  408.                     text: '',
  409.                     modifiers: ''
  410.                 } %}
  411.                 {% include 'molecules/banners/m.html.twig' with {
  412.                     link: path('facilities_skin'),
  413.                     title: 'Skin Instalacións',
  414.                     text: '',
  415.                     modifiers: ''
  416.                 } %}
  417.                 {% include 'molecules/banners/m.html.twig' with {
  418.                     link: path('journal_skin'),
  419.                     title: 'Skin Xornal',
  420.                     text: '',
  421.                     modifiers: ''
  422.                 } %}
  423.             </div>
  424.         </div>
  425.     </section>
  426.     <section class="org-tier">
  427.         <div class="tier-header">
  428.             <h2 class="tier-title">Drupal</h2>
  429.         </div>
  430.         <div class="tier-content">
  431.             <div class="org-modules-container has-banners">
  432.                 {% include 'molecules/banners/m.html.twig' with {
  433.                     link: path('drupal_forms'),
  434.                     title: 'Formularios',
  435.                     text: '',
  436.                     modifiers: ''
  437.                 } %}
  438.                 {% include 'molecules/banners/m.html.twig' with {
  439.                     link: path('drupal_cookie_banner'),
  440.                     title: 'Banner de cookies',
  441.                     text: '',
  442.                     modifiers: ''
  443.                 } %}
  444.             </div>
  445.         </div>
  446.     </section>
  447.     <section class="org-tier">
  448.         <div class="tier-header">
  449.             <h2 class="tier-title">Pantallas</h2>
  450.         </div>
  451.         <div class="tier-content">
  452.             <div class="org-modules-container has-banners">
  453.                 {% include 'molecules/banners/m.html.twig' with {
  454.                     link: path('site_display_main'),
  455.                     title: 'Pantalla base',
  456.                     text: '',
  457.                     modifiers: ''
  458.                 } %}
  459.                 {% include 'molecules/banners/m.html.twig' with {
  460.                     link: path('site_display_alert'),
  461.                     title: 'Pantalla con aviso',
  462.                     text: '',
  463.                     modifiers: ''
  464.                 } %}
  465.                 {% include 'molecules/banners/m.html.twig' with {
  466.                     link: path('site_display_alert_slide'),
  467.                     title: 'Pantalla con aviso grande',
  468.                     text: '',
  469.                     modifiers: ''
  470.                 } %}
  471.                 {% include 'molecules/banners/m.html.twig' with {
  472.                     link: path('site_display_event'),
  473.                     title: 'Pantalla con evento',
  474.                     text: '',
  475.                     modifiers: ''
  476.                 } %}
  477.                 {% include 'molecules/banners/m.html.twig' with {
  478.                     link: path('site_display_news_item'),
  479.                     title: 'Pantalla con nova',
  480.                     text: '',
  481.                     modifiers: ''
  482.                 } %}
  483.                 {% include 'molecules/banners/m.html.twig' with {
  484.                     link: path('site_display_brief'),
  485.                     title: 'Pantalla con breve',
  486.                     text: '',
  487.                     modifiers: ''
  488.                 } %}
  489.                 {% include 'molecules/banners/m.html.twig' with {
  490.                     link: path('site_display_banner'),
  491.                     title: 'Pantalla con báner',
  492.                     text: '',
  493.                     modifiers: ''
  494.                 } %}
  495.                 {% include 'molecules/banners/m.html.twig' with {
  496.                     link: path('site_display_no_sidebar'),
  497.                     title: 'Pantalla sen barra lateral',
  498.                     text: '',
  499.                     modifiers: ''
  500.                 } %}
  501.                 
  502.                 {% include 'molecules/banners/m.html.twig' with {
  503.                     link: path('site_display_no_sidebar_banner'),
  504.                     title: 'Pantalla con báner',
  505.                     text: 'Sen barra lateral',
  506.                     modifiers: ''
  507.                 } %}
  508.                 {% include 'molecules/banners/m.html.twig' with {
  509.                     link: path('site_display_video'),
  510.                     title: 'Pantalla con vídeo',
  511.                     text: '',
  512.                     modifiers: ''
  513.                 } %}
  514.                 {% include 'molecules/banners/m.html.twig' with {
  515.                     link: path('site_display_no_sidebar_video'),
  516.                     title: 'Pantalla con vídeo',
  517.                     text: 'Sen barra lateral',
  518.                     modifiers: ''
  519.                 } %}
  520.                 {% include 'molecules/banners/m.html.twig' with {
  521.                     link: path('site_display_image_full'),
  522.                     title: 'Pantalla con imaxe completa',
  523.                     text: '',
  524.                     modifiers: ''
  525.                 } %}
  526.                 {% include 'molecules/banners/m.html.twig' with {
  527.                     link: path('site_display_iframe'),
  528.                     title: 'Pantalla con iframe',
  529.                     text: '',
  530.                     modifiers: ''
  531.                 } %}
  532.             </div>
  533.         </div>
  534.     </section>
  535. {% endblock %}