digitalmarketplace-govuk-frontend
Version:
Digital Marketplace GOV.UK Frontend contains the code you need to start building a user interface for Digital Marketplace.
16 lines (12 loc) • 408 B
HTML
{% extends "_base_page.html" %}
{% block pageTitle %}Sorry, we’re experiencing technical difficulties - Digital Marketplace{% endblock %}
{% block mainContent %}
<h1 class="govuk-heading-xl">Sorry, we’re experiencing technical difficulties</h1>
<p class="govuk-body">
{% if error_message %}
{{ error_message }}
{% else %}
Try again later.
{% endif %}
</p>
{% endblock %}