modif 11_11_20
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -32,8 +32,12 @@ header{
|
|||||||
border-left: 1px solid $color1;
|
border-left: 1px solid $color1;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
display: none;
|
display: none;
|
||||||
|
a{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
@media screen and (min-width: 1200px) {
|
@media screen and (min-width: 1200px) {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
}
|
}
|
||||||
.site_setting_entity{
|
.site_setting_entity{
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -65,17 +69,15 @@ header{
|
|||||||
margin-bottom: 0.6rem;
|
margin-bottom: 0.6rem;
|
||||||
}
|
}
|
||||||
&:last-child{
|
&:last-child{
|
||||||
p{
|
|
||||||
color: $color2;
|
color: $color2;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
// width: min-content;
|
width: min-content;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#block-mainnavigation{
|
#block-mainnavigation{
|
||||||
width: max-content;
|
width: max-content;
|
||||||
.burger{
|
.burger{
|
||||||
|
|||||||
@@ -88,7 +88,6 @@
|
|||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
&:last-child{
|
&:last-child{
|
||||||
p{
|
|
||||||
font-family: 'truenoregular';
|
font-family: 'truenoregular';
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
@@ -98,7 +97,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
form{
|
form{
|
||||||
|
|||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
{#
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Default theme implementation to display a block.
|
||||||
|
*
|
||||||
|
* Available variables:
|
||||||
|
* - plugin_id: The ID of the block implementation.
|
||||||
|
* - label: The configured label of the block if visible.
|
||||||
|
* - configuration: A list of the block's configuration values.
|
||||||
|
* - label: The configured label for the block.
|
||||||
|
* - label_display: The display settings for the label.
|
||||||
|
* - provider: The module or other provider that provided this block plugin.
|
||||||
|
* - Block plugin specific settings will also be stored here.
|
||||||
|
* - content: The content of this block.
|
||||||
|
* - attributes: array of HTML attributes populated by modules, intended to
|
||||||
|
* be added to the main container tag of this template.
|
||||||
|
* - id: A valid HTML ID and guaranteed unique.
|
||||||
|
* - title_attributes: Same as attributes, except applied to the main title
|
||||||
|
* tag that appears in the template.
|
||||||
|
* - title_prefix: Additional output populated by modules, intended to be
|
||||||
|
* displayed in front of the main title tag that appears in the template.
|
||||||
|
* - title_suffix: Additional output populated by modules, intended to be
|
||||||
|
* displayed after the main title tag that appears in the template.
|
||||||
|
*
|
||||||
|
* @see template_preprocess_block()
|
||||||
|
*
|
||||||
|
* @ingroup themeable
|
||||||
|
*/
|
||||||
|
#}
|
||||||
|
|
||||||
|
|
||||||
|
<div id="block-renderedsitesettingsblock-2">
|
||||||
|
<a href="/" >
|
||||||
|
{{ title_prefix }}
|
||||||
|
{% if label %}
|
||||||
|
<h2{{ title_attributes }}>{{ label }}</h2>
|
||||||
|
{% endif %}
|
||||||
|
{{ title_suffix }}
|
||||||
|
{% block content %}
|
||||||
|
{{ content }}
|
||||||
|
{% endblock %}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
+2
-1
@@ -20,7 +20,8 @@
|
|||||||
{{- content.field_title_colloque -}}
|
{{- content.field_title_colloque -}}
|
||||||
<div class="__info_colloque">
|
<div class="__info_colloque">
|
||||||
{{content.field_date_du_colloque}}
|
{{content.field_date_du_colloque}}
|
||||||
{{content.field_field_sub_title_wysiwyg}}
|
{# {{content.field_field_sub_title_wysiwyg}} #}
|
||||||
|
{{content.field_sub_title_du_colloque}}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+8
-2
@@ -41,7 +41,7 @@
|
|||||||
{{fields.field_image.content}}
|
{{fields.field_image.content}}
|
||||||
</figure>
|
</figure>
|
||||||
<div class="__wrap">
|
<div class="__wrap">
|
||||||
<div class="d-flex">
|
<div class="d-flex flex-wrap">
|
||||||
<time datetime="{{fields.field_heure_du_moment.content}}" class="__date mr-1">
|
<time datetime="{{fields.field_heure_du_moment.content}}" class="__date mr-1">
|
||||||
{{fields.field_heure_du_moment.content}}
|
{{fields.field_heure_du_moment.content}}
|
||||||
</time>
|
</time>
|
||||||
@@ -51,8 +51,14 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="__content">
|
|
||||||
|
<div class="__content {{fields.field_accessible.content}}">
|
||||||
{{fields.title.content}}
|
{{fields.title.content}}
|
||||||
|
{% if fields.field_accessible.content == "1" %}
|
||||||
|
{% else %}
|
||||||
|
{{fields.field_role_de_l_intervenant.content}}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% if fields.field_accessible.content %}
|
{% if fields.field_accessible.content %}
|
||||||
|
|||||||
Reference in New Issue
Block a user