mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-15 07:18:58 -04:00
16 lines
528 B
Plaintext
16 lines
528 B
Plaintext
{% if params.html or params.text %}
|
|
{% set labelHtml %}
|
|
<label class="govuk-label{%- if params.classes %} {{ params.classes }}{% endif %}"
|
|
{%- for attribute, value in params.attributes %} {{attribute}}="{{value}}"{% endfor %}
|
|
{%- if params.for %} for="{{ params.for }}"{% endif %}>
|
|
{{ params.html | safe if params.html else params.text }}
|
|
</label>
|
|
{% endset %}
|
|
|
|
{% if params.isPageHeading %}
|
|
<h1 class="govuk-label-wrapper">{{ labelHtml | safe | indent(2) }}</h1>
|
|
{% else %}
|
|
{{ labelHtml | safe }}
|
|
{% endif %}
|
|
{% endif %}
|