Print the secondary menu in the titlebar area

because our styleguide is annoying, we had to add the titlebar section to things
that don't have it in the styleguide, to be able to add the titlebar links part
when the secondary menu is there.

because Drupal is annoying, it prints the titlebar_links part whether there's any
secondary menu or not.

Ref #110
This commit is contained in:
benjamin melançon 2018-12-17 17:15:14 -05:00
parent cd0a7e0a1a
commit 49295ecb73

View file

@ -94,11 +94,20 @@
<section{{ attributes.addClass(classes) }} data-headerbg="{{ headerbg }}">
<div class="hero-body">
<div class="container">
<h1 class="title is-2">{{ label }}</h1>
{% if content.field_authors is not empty %}
<p class="byline is-mono">Written by {{ content.field_authors }}</p>
<p class="byline is-mono">Posted on {{ date }}</p>
{% endif %}
<div class="titlebar">
<div class="titlebar_title">
<h1 class="title is-2">{{ label }}</h1>
{% if content.field_authors is not empty %}
<p class="byline is-mono">Written by {{ content.field_authors }}</p>
<p class="byline is-mono">Posted on {{ date }}</p>
{% endif %}
</div>
{% if secondary_menu %}
<div class="titlebar_links">
{{ secondary_menu }}
</div>
{% endif %}
</div>
</div>
</div>
</section>