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 %} @@ -178,4 +178,16 @@ {% endfor %} + +
    +

    Twelve

    + {% setcontent about = 'blocks/about' %} + +
    {% endblock main %}