Portfolio - Components
View All Components
Component: Alert
Features
- Change theme
- Drag and drop
Notes
- Minimal
field.html.twigused to loop paragraph content
Watch Short Video
paragraph--alert.html.twig
{% set col = paragraph.field_alert_text_color.value %}
{% set theme = paragraph.field_theme_color.value %}
{% set text = content.field_alert_text %}
{% block paragraph %}
<div class="row">
{% block content %}
<div class="alert custom-alert {{ col }} bg-{{ theme }}">
{{ text }}
</div>
{% endblock %}
</div>
{% endblock paragraph %}
field.html.twig
{% for item in items %}
{{ item.content }}
{% endfor %}