diff --git a/public/theme/skeleton/custom/setcontent_1.twig b/public/theme/skeleton/custom/setcontent_1.twig
index 88c3852ab..5f646032f 100644
--- a/public/theme/skeleton/custom/setcontent_1.twig
+++ b/public/theme/skeleton/custom/setcontent_1.twig
@@ -9,7 +9,7 @@
{% endmacro %}
{% macro contains(needle, haystack) %}
- {% if needle in haystack %}[yes]{% else %}[no]{% endif %}
+ {% if needle|lower in haystack|lower %}[yes]{% else %}[no]{% endif %}
{% endmacro %}
{% block main %}
@@ -124,7 +124,7 @@
{% for entry in entries %}
{{ entry.contenttype }} {{ entry.id }} . {{ entry|title }}
- {% if 'voluptat' in entry|title or 'porro' in entry|title %}[yes]{% else %}[no]{% endif %}
+ {% if 'voluptat' in entry|title|lower or 'porro' in entry|title|lower %}[yes]{% else %}[no]{% endif %}
{% set last = entry.id %}
{% endfor %}
@@ -160,7 +160,7 @@
{% endfor %}
- - Two different random results: [{{ first_ids === second_ids ? "no" : "yes" }}]
+ - Two different random results: {{ first_ids === second_ids ? "[no]" : "[yes]" }}
@@ -178,4 +178,16 @@
{% endfor %}
+
+
+ Twelve
+ {% setcontent about = 'blocks/about' %}
+
+ {% if about.title == 'About This Site' %}
+ - {{ about.title }} [yes]
+ {% else %}
+ - [no]
+ {% endif %}
+
+
{% endblock main %}