Sha256: 8c7dbc3222601e8af0f9477b4367af79aebcab3ab4d372e465d87683afbc2b38
Contents?: true
Size: 668 Bytes
Versions: 57
Compression:
Stored size: 668 Bytes
Contents
{% from "../../macros/attributes.njk" import govukAttributes -%} {% set headingLevel = params.headingLevel if params.headingLevel else 1 -%} <div class="govuk-panel govuk-panel--confirmation {%- if params.classes %} {{ params.classes }}{% endif %}" {{- govukAttributes(params.attributes) }}> <h{{ headingLevel }} class="govuk-panel__title"> {{ params.titleHtml | safe if params.titleHtml else params.titleText }} </h{{ headingLevel }}> {% if caller or params.html or params.text %} <div class="govuk-panel__body"> {{ caller() if caller else (params.html | safe | trim | indent(4) if params.html else params.text) }} </div> {% endif %} </div>
Version data entries
57 entries across 57 versions & 2 rubygems