{% extends '@nucleus/partials/particle.html.twig' %} {% block particle %} {% styles with { priority: -10 } %} {% endstyles -%}
{% if particle.title %}

{{ particle.title|raw }}

{% endif %} {% if particle.headertext %}
{{ particle.headertext|raw }}
{% endif %}
{% for table in particle.tables %}
    {% if table.ribbon %}
  • {{ table.ribbon|e }}
  • {% endif %} {% if table.icon %}
  • {% endif %} {% if table.plan %}
  • {% if table.buttontext %} {% endif %} {{ table.plan|raw }} {% if table.buttontext %} {% endif %}
  • {% endif %} {% if table.price %}
  • {{ table.price|raw }}
  • {% endif %} {% if table.period %}
  • {{ table.period|raw }}
  • {% endif %} {% if table.desc %}
  • {{ table.desc|raw }}
  • {% endif %} {% for key, item in table.items %}
  • {{ item.text|raw }}
  • {% endfor %} {% if table.buttontext %}
  • {{ table.buttontext|e }}
  • {% endif %}
{% endfor %}
{% if particle.footertext %}
{{ particle.footertext|raw }}
{% endif %}
{% endblock %}