Block Features Grid

Lorem

First block subtitle

Feature 1

Content of feature 1.

Feature 2

Content of feature 2.

Feature 3

Content of feature 3.

Ipsum

Subtitle of the second block.

Feature 1

Content of feature 1.

Feature 2

Content of feature 2.

Feature 3

Content of feature 3.
{# derafu_twig:templates/pages/components/block-features-grid.html.twig #}

{% extends 'layouts/default.html.twig' %}

{% block content %}

<twig:block-features-grid
    class="my-4"
    :blocks="[
        {
            title: 'Lorem',
            subtitle: 'First block subtitle',
            features: [
                {
                    icon: 'fa-solid fa-cloud',
                    title: 'Feature 1',
                    content: 'Content of <a href=\'https://www.example.com/\' target=\'_blank\'>feature 1.</a>'
                },
                {
                    icon: 'fa-solid fa-cog',
                    title: 'Feature 2',
                    content: 'Content of feature 2.'
                },
                {
                    icon: 'fa-solid fa-users',
                    title: 'Feature 3',
                    content: 'Content of feature 3.'
                }
            ]
        },
        {
            title: 'Ipsum',
            subtitle: 'Subtitle of the second <a href=\'https://www.example.com/\' target=\'_blank\'>block</a>.',
            features: [
                {
                    icon: 'fa-solid fa-star',
                    title: 'Feature 1',
                    content: 'Content of feature 1.'
                },
                {
                    icon: 'fa-solid fa-heart',
                    title: 'Feature <a href=\'https://www.example.com/\' target=\'_blank\'>2</a>',
                    content: 'Content of feature 2.'
                },
                {
                    icon: 'fa-solid fa-bell',
                    title: 'Feature 3',
                    content: 'Content of feature 3.'
                }
            ]
        }
    ]"
/>

{% endblock %}