reinstalled all contribs with composer

need to run :
drush ev 'drupal_flush_all_caches();'
drush cr
and restart nginx and php-fpm before loading the website
This commit is contained in:
2019-04-30 19:27:47 +02:00
parent e1f9bb3cd0
commit 9da6cf9927
373 changed files with 3392 additions and 5 deletions
@@ -0,0 +1,22 @@
{#
/**
* @file chutier.html.twig
* Default theme implementation to present Chutier data.
*
* This template is used when viewing Chutier pages.
*
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_chutier()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('chutier') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>
@@ -0,0 +1,20 @@
{#
/**
* @file composition.html.twig
* Default theme implementation to present Composition data.
*
* This template is used when viewing Composition pages.
*
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_composition()
*
* @ingroup themeable
*/
#}
<div{{ attributes }}>
{{ content }}
</div>
@@ -0,0 +1,6 @@
<div class="chutier_ui">
<h2>{{ title }}</h2>
<section class="documents">
{{ documents }}
</section>
</div>
@@ -0,0 +1,17 @@
<div class="composition_ui">
<h2>{{ title }}</h2>
<div class="wrapper">
<section class='compositions-list'>
{{ compositions }}
</section>
<section class="composer">
<header>
{{ composer_header }}
</header>
{{ composition }}
<section class="actions">
{{ composer_actions }}
</section>
</section>
</div>
</div>
@@ -0,0 +1 @@
{{ compositions }}
@@ -0,0 +1,4 @@
<div id="studio-ui">
{{ chutier_ui }}
{{ composition_ui }}
</div>