##  [Twig, Drupal fields, Date Formating, select list and more. Rendering in templates, creating variables. ](/twig-drupal-fields-date-formating-select-list-and-more-rendering-in-templates-creating-variables) 

[https://drupal.stackexchange.com/questions/254491/how-to-check-a-boolea…](https://drupal.stackexchange.com/questions/254491/how-to-check-a-boolean-value-in-twig-templates)

```twig
{% set isLanguagePoint = content.field_para_language_point.value %}
{% if content.field_para_language_point.value == 1 %}!◆{% endif %} {# doesn't work #}
{% if content.field_para_language_point['#items'].value %}◆{% endif %} {{ content.field_title.0 }}
<br>
<br>
{{ content.field_para_content }}
```