created edlp_studio module, only with chutier and fil entities definitions

This commit is contained in:
Bachir Soussi Chiadmi
2018-03-10 17:19:45 +01:00
parent 7e564374c7
commit 7d2a7f4f37
33 changed files with 1574 additions and 0 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,22 @@
{#
/**
* @file fil.html.twig
* Default theme implementation to present Fil data.
*
* This template is used when viewing Fil 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_fil()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('fil') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>