templates/templates/pages/center/center-quality-indicators.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/organization.html.twig" %}
  2. {% block bodyClass %}tpl-repository{% endblock %}
  3. {% block siteHeader %}
  4.   {% include 'organisms/organization-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         breadcrumb: [
  9.           { path: path('center-quality'), title: 'Calidade' }
  10.           ],
  11.         title: 'Indicadores'
  12.     } %}
  13. {% endblock %}
  14. {% block pageContent %}
  15. <section class="org-tier is-minimal is-marginless-top">
  16.     <div class="tier-content">
  17.         <usc-content-filter
  18.                 :options="[{key: null, name: 'Todos', selected: true}, {key: 'is-type-1', name: 'Graos', selected: false}, {key: 'is-type-2', name: 'Másteres', selected: false}, {key: 'is-type-3', name: 'Doutoramentos', selected: false} ]"
  19.         >
  20.             <template v-slot:filters>
  21.                 <usc-text-filter
  22.                         target-container="#banners-container-1"
  23.                         target-items=".ml-banner"
  24.                 ></usc-text-filter>
  25.             </template>
  26.             <div class="org-modules-container  has-banners" id="banners-container-1">
  27.         {% include 'molecules/banners/s.html.twig' with {
  28.           link: path('center-quality-indicators-course'),
  29.           title: 'Título de grao 1',
  30.           modifiers:'is-type-1'
  31.         } %}
  32.         {% include 'molecules/banners/s.html.twig' with {
  33.           link: path('center-quality-indicators-course'),
  34.           title: 'Título de grao 2',
  35.           modifiers:'is-type-1'
  36.         } %}
  37.         {% include 'molecules/banners/s.html.twig' with {
  38.           link: path('center-quality-indicators-course'),
  39.           title: 'Título de grao 3',
  40.           modifiers:'is-type-1'
  41.         } %}
  42.         {% include 'molecules/banners/s.html.twig' with {
  43.           link: path('center-quality-indicators-course'),
  44.           title: 'Título de grao 4',
  45.           modifiers:'is-type-1'
  46.         } %}
  47.         {% include 'molecules/banners/s.html.twig' with {
  48.           link: path('center-quality-indicators-course'),
  49.           title: 'Título de grao 5',
  50.           modifiers:'is-type-1'
  51.         } %}
  52.         {% include 'molecules/banners/s.html.twig' with {
  53.           link: path('center-quality-indicators-course'),
  54.           title: 'Título de máster 1',
  55.           modifiers:'is-type-2'
  56.         } %}
  57.         {% include 'molecules/banners/s.html.twig' with {
  58.           link: path('center-quality-indicators-course'),
  59.           title: 'Título de máster 2',
  60.           modifiers:'is-type-2'
  61.         } %}
  62.         {% include 'molecules/banners/s.html.twig' with {
  63.           link: path('center-quality-indicators-course'),
  64.           title: 'Título de máster 3',
  65.           modifiers:'is-type-2'
  66.         } %}
  67.         {% include 'molecules/banners/s.html.twig' with {
  68.           link: path('center-quality-indicators-course'),
  69.           title: 'Título de doutoramento 4',
  70.           modifiers:'is-type-3'
  71.         } %}
  72.         {% include 'molecules/banners/s.html.twig' with {
  73.           link: path('center-quality-indicators-course'),
  74.           title: 'Título de doutoramento 1',
  75.           modifiers:'is-type-3'
  76.         } %}
  77.         {% include 'molecules/banners/s.html.twig' with {
  78.           link: path('center-quality-indicators-course'),
  79.           title: 'Título de doutoramento 2',
  80.           modifiers:'is-type-3'
  81.         } %}
  82.         {% include 'molecules/banners/s.html.twig' with {
  83.           link: path('center-quality-indicators-course'),
  84.           title: 'Título de doutoramento 3',
  85.           modifiers:'is-type-3'
  86.         } %}
  87.             </div>
  88.         </usc-content-filter>
  89.     </div>
  90. </section>
  91. {% endblock %}
  92. {% block siteFooter %}
  93.     {% include 'organisms/site-footer.html.twig' %}
  94. {% endblock %}