{# /** * @file * Theme a simple content array. * * This template uses the newer recommended format where a single * render array is provided to the theme function. */ #} {% for item in element['#items'] %} {% if not loop.index %} {# The first paragraph is bolded. #}

{{ item }}

{% else %} {# Following paragraphs are just output as routine paragraphs. #}

{{ item }}

{% endif %} {% endfor %}