module image title

This commit is contained in:
2023-06-19 14:13:27 +02:00
parent 8df9fc6ecc
commit 8cab24aee5
23 changed files with 266 additions and 344 deletions
@@ -65,20 +65,22 @@
{% endif %} #}
</main>
<aside role="book navigation">
{% if page.sidebar_first %}
<aside class="layout-sidebar-first" role="complementary">
{{ page.sidebar_first }}
</aside>
{% endif %}
<aside class="layout-sidebar" role="book navigation">
<div class="sidebar">
{% if page.sidebar_first %}
<aside class="layout-sidebar-first" role="complementary">
{{ page.sidebar_first }}
</aside>
{% endif %}
{% if page.sidebar_second %}
<aside class="layout-sidebar-second" role="complementary">
{{ page.sidebar_second }}
</aside>
{% endif %}
<div class="book-navigation">
{{ page.sidebar }}
{% if page.sidebar_second %}
<aside class="layout-sidebar-second" role="complementary">
{{ page.sidebar_second }}
</aside>
{% endif %}
<div class="book-navigation">
{{ page.sidebar }}
</div>
</div>
</aside>
@@ -0,0 +1,21 @@
{#
/**
* @file
* Default theme implementation to display a formatted image field.
*
* Available variables:
* - image: A collection of image data.
* - image_style: An optional image style.
* - url: An optional URL the image can be linked to.
*
* @see template_preprocess_image_formatter()
*
* @ingroup themeable
*/
#}
{% if url %}
{{ link(image, url) }}
{% else %}
{{ image }}
{{attributes}}
{% endif %}