Skip to content
Snippets Groups Projects
Verified Commit 8144350a authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3439017 by catch, smustgrave: Umami page.tpl.php breaks block placeholders

(cherry picked from commit 1fd79604)
parent b09d4e08
No related branches found
No related tags found
17 merge requests!12212Issue #3445525 by alexpott, japerry, catch, mglaman, longwave: Add BC layer...,!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8949Backport .gitlabci.yml changes.,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!8533Issue #3446962 by kim.pepper: Remove incorrectly added...,!8517Issue #3443748 by NexusNovaz, smustgrave: Testcase creates false positive,!7445Issue #3440169: When using drupalGet(), provide an associative array for $headers,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #178122 passed with warnings
Pipeline: drupal

#178128

    ......@@ -44,14 +44,14 @@
    #}
    <div class="layout-container">
    {% if page.pre_header|render|striptags|trim is not empty or
    page.header|render|striptags|trim is not empty %}
    {% if page.pre_header|render|trim is not empty or
    page.header|render|trim is not empty %}
    <header class="layout-header" role="banner">
    <div class="container">
    {% if page.pre_header|render|striptags|trim is not empty %}
    {% if page.pre_header|render|trim is not empty %}
    {{ page.pre_header }}
    {% endif %}
    {% if page.header|render|striptags|trim is not empty %}
    {% if page.header|render|trim is not empty %}
    {{ page.header }}
    {% endif %}
    </div>
    ......@@ -74,13 +74,13 @@
    </div>
    {% endif %}
    {% if page.banner_top|render|striptags|trim is not empty %}
    {% if page.banner_top|render|trim is not empty %}
    <div class="layout-banner-top">
    {{ page.banner_top }}
    </div>
    {% endif %}
    {% if page.breadcrumbs|render|striptags|trim is not empty %}
    {% if page.breadcrumbs|render|trim is not empty %}
    <div class="layout-breadcrumbs">
    <div class="container">
    {{ page.breadcrumbs }}
    ......@@ -89,7 +89,7 @@
    {% endif %}
    {% if not node %}
    {% if page.page_title|render|striptags|trim is not empty %}
    {% if page.page_title|render|trim is not empty %}
    <div class="layout-page-title">
    {% if is_front %}
    <div class="is-front container">
    ......@@ -111,7 +111,7 @@
    {{ page.content }}
    </div>{# /.layout-content #}
    {% if page.sidebar|render|striptags|trim is not empty %}
    {% if page.sidebar|render|trim is not empty %}
    <aside class="layout-sidebar" role="complementary">
    {{ page.sidebar }}
    </aside>
    ......@@ -119,13 +119,13 @@
    </main>
    {% if page.content_bottom|render|striptags|trim is not empty %}
    {% if page.content_bottom|render|trim is not empty %}
    <div class="layout-content-bottom">
    {{ page.content_bottom }}
    </div>
    {% endif %}
    {% if page.footer|render|striptags|trim is not empty %}
    {% if page.footer|render|trim is not empty %}
    <div class="layout-footer">
    <footer class="footer" role="contentinfo">
    <div class="container">
    ......@@ -135,7 +135,7 @@
    </div>
    {% endif %}
    {% if page.bottom|render|striptags|trim is not empty %}
    {% if page.bottom|render|trim is not empty %}
    <div class="layout-bottom">
    <div class="container">
    {{ page.bottom }}
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment