Add placeholders, classes for indieweb markup
This commit is contained in:
parent
03d4cadb5b
commit
ee2d68da26
1 changed files with 10 additions and 3 deletions
|
@ -71,6 +71,8 @@
|
||||||
*/
|
*/
|
||||||
#}
|
#}
|
||||||
|
|
||||||
|
<article{{ attributes.addClass(classes) }}">
|
||||||
|
|
||||||
{% set title_paragraph_index = null %}
|
{% set title_paragraph_index = null %}
|
||||||
{% set has_title_paragraph = false %}
|
{% set has_title_paragraph = false %}
|
||||||
{% if content.field_body_paragraph %}
|
{% if content.field_body_paragraph %}
|
||||||
|
@ -85,13 +87,13 @@
|
||||||
|
|
||||||
{% if not has_title_paragraph %}
|
{% if not has_title_paragraph %}
|
||||||
{% set headerbg = 'light' %}
|
{% set headerbg = 'light' %}
|
||||||
{% set classes = [ 'hero', 'hero-' ~ node.bundle|replace({"_": "-"}) ] %}
|
{% set title_classes = [ 'hero', 'hero-' ~ node.bundle|replace({"_": "-"}) ] %}
|
||||||
{% if node.bundle != 'blog' %}
|
{% if node.bundle != 'blog' %}
|
||||||
{% set classes = classes|merge(['is-dark']) %}
|
{% set title_classes = title_classes|merge(['is-dark']) %}
|
||||||
{% set headerbg = 'dark' %}
|
{% set headerbg = 'dark' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{# Header hero region #}
|
{# Header hero region #}
|
||||||
<section{{ attributes.addClass(classes) }} data-headerbg="{{ headerbg }}">
|
<section{{ create_attribute().addClass(title_classes) }} data-headerbg="{{ headerbg }}">
|
||||||
<div class="hero-body">
|
<div class="hero-body">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="titlebar">
|
<div class="titlebar">
|
||||||
|
@ -113,6 +115,8 @@
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="e-content">
|
||||||
|
|
||||||
{% set bust_out = false %}
|
{% set bust_out = false %}
|
||||||
{% set walls_up = false %}
|
{% set walls_up = false %}
|
||||||
|
|
||||||
|
@ -150,6 +154,9 @@
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
</div>{# end e-content div #}
|
||||||
|
</article>{# end h-entry article #}
|
||||||
|
|
||||||
{% if content.comment %}
|
{% if content.comment %}
|
||||||
{{ content.comment }}
|
{{ content.comment }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue