Skip to content

Commit

Permalink
remove role from main tag
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-shaw committed May 29, 2024
1 parent 415cfa6 commit 23e8eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions govuk_frontend_jinja/templates/template.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% from "govuk_frontend_jinja/macros/attributes.html" import govukAttributes %}
{% from "govuk_frontend_jinja/macros/attributes.html" import govukAttributes -%}
{% from "govuk_frontend_jinja/components/skip-link/macro.html" import govukSkipLink -%}
{% from "govuk_frontend_jinja/components/header/macro.html" import govukHeader -%}
{% from "govuk_frontend_jinja/components/footer/macro.html" import govukFooter -%}
Expand Down Expand Up @@ -43,7 +43,7 @@
{% block main %}
<div class="govuk-width-container {%- if containerClasses %} {{ containerClasses }}{% endif %}">
{% block beforeContent %}{% endblock %}
<main class="govuk-main-wrapper {%- if mainClasses %} {{ mainClasses }}{% endif %}" id="main-content" role="main" {%- if mainLang %} lang="{{ mainLang }}"{% endif %}>
<main class="govuk-main-wrapper {%- if mainClasses %} {{ mainClasses }}{% endif %}" id="main-content" {%- if mainLang %} lang="{{ mainLang }}"{% endif %}>
{% block content %}{% endblock %}
</main>
</div>
Expand Down

0 comments on commit 23e8eb3

Please sign in to comment.