GOVUK Panel
An example of the govuk panel component.
<div class="govuk-panel govuk-panel--confirmation">
<h1 class="govuk-panel__title">
Application complete
</h1>
<div class="govuk-panel__body">
Your reference number<br><strong>HDJ2123F</strong>
</div>
</div>
{% from "govuk_frontend_jinja/components/panel/macro.html" import govukPanel -%}
{{ govukPanel({
"titleText": "Application complete",
"html": "Your reference number<br><strong>HDJ2123F</strong>"
}) }}