5.3 Block View in a new window

The default callout shows a small amount of information without any interactions or icons.

Twig: components/block/block.twig

Example

Asbestos

It is strongly recommended that you use a licenced asbestos removalist to remove asbestos to ensure the safety of you and others. Removalists know what to do and how to keep you and others safe from the health risks involved. Tips on choosing a good removalist are here

Markup
{% set data = data|default({
    "label":"Asbestos",
    "content":"It is strongly recommended that you use a licenced asbestos removalist to remove asbestos to ensure the safety of you and others. Removalists know what to do and how to keep you and others safe from the health risks involved. Tips on choosing a good removalist are here",
    "modifier_class": "title"
}) %}

<div class="nsw-block {{data.modifier_class}}">
  {% if data.label %}
    <h2 class="text-left">{{ data.label }}</h2>
  {% endif %}
  {% if data.headingContent %}
    <h3 class="text-left">{{ data.headingContent }}</h3>
  {% endif %}
  {% block content %}
  <div class="{{data.content_modifier_class}}">
      <p class="nsw-block__content">{{ data.content }} </p>
  </div>
  {% endblock %}
</div>