ajout des font woff

This commit is contained in:
armansansd
2021-06-02 14:37:55 +02:00
parent 0d932a8fa8
commit d7babf4d54
73 changed files with 411 additions and 39 deletions

View File

@@ -35,7 +35,7 @@
{% include directory ~ '\/partials/header.html.twig' %}
{{ page.help }}
<main role="main">
<main role="main" class="columns small-12">
<a id="main-content" tabindex="-1"></a>
{# link is in html.html.twig #}
<div class="layout-content">

View File

@@ -1,32 +0,0 @@
{#
/**
* @file
* Default theme implementation to display a view of unformatted rows.
*
* Available variables:
* - title: The title of this group of rows. May be empty.
* - rows: A list of the view's row items.
* - attributes: The row's HTML attributes.
* - content: The row's content.
* - view: The view object.
* - default_row_class: A flag indicating whether default classes should be
* used on rows.
*
* @see template_preprocess_views_view_unformatted()
*
* @ingroup themeable
*/
#}
{% if title %}
<h3>{{ title }}</h3>
{% endif %}
{% for row in rows %}
{%
set row_classes = [
default_row_class ? 'views-row',
]
%}
<div{{ row.attributes.addClass(row_classes) }}>
{{- row.content -}}
</div>
{% endfor %}