Rework proof of concept

leave in some remaks on insanity:

{{ content }} doesn't print out any paragraphs; only {{ content.content}} does that.
This commit is contained in:
benjamin melançon 2018-10-24 18:38:15 -04:00
parent 0d59e58618
commit 7084b3ed7c

View file

@ -22,16 +22,15 @@
{# expected if statement would start here #}
{% set classes = classes|merge(['is-dark']) %}
{% set title_paragraph_index = 'silly' %}
{% set tpi = null %}
{% set title_paragraph_index = null %}
{% set has_title_paragraph = false %}
{% if content.field_body_paragraph %}
{% for i, paragraph in content.field_body_paragraph['#items'] %}
{% if paragraph.entity.type.0.entity.id == 'title' %}
{% for i, paragraph in content.field_body_paragraph if i|first != '#' %}
{% if content.field_body_paragraph['#items'][i].entity.type.0.entity.id == 'title' %}
HOLY MOLY THIS HAS TAKEN A WHILE
{% set has_title_paragraph = true %}
{{ content.field_body_paragraph[i] }}
{% set title_paragraph_index = i %}
{% set tpi = i %}
{{ paragraph }}
{% endif %}
{% endfor %}
{% endif %}
@ -47,21 +46,21 @@
</section>
{% endif %}
{{ content.field_simple_multivalue[0] }}
{% for i in 1..2 %}
{{ content.field_simple_multivalue[i] }}
{% endfor %}
AND HERE COMES THE REST<br />
No number huh? {{ title_paragraph_index }}
<br />Ehh? {{ tpi }}
<br />Gah. {{ has_title_paragraph }}
<section{{ attributes.addClass(classes) }}>
{% for i, paragraph in content.field_body_paragraph if i|first != '#' %}
NOO NUMBERSSS {{ i }}
{{ paragraph }}
{% if i is not same as(title_paragraph_index) %}
{{ paragraph }}
{% endif %}
{% endfor %}
{{ content|without('content', 'field_body_paragraph') }}
</section>
SANITY CHECK
{{ content }}
NOPE EVERYTHING IS INSANE OH WELL
{{ content.content }}
{% endif %}