Skip to content

Commit

Permalink
✨ Fix WCAG Issues and create new report (#231)
Browse files Browse the repository at this point in the history
Parent issue: sequentech/meta#550
  • Loading branch information
Findeton committed Feb 20, 2024
1 parent 3dd0465 commit 97d37b6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<a href="#main-content" class="skip-link">{{ 'avElection.skipLinks.skipToMain' | i18next }}</a>
<a href="#footer" class="skip-link">{{ 'avElection.skipLinks.skipToFooter' | i18next }}</a>
<div ng-if="!election" avb-common-header is-election-portal="true"></div>
<div
ng-if="!!election"
avb-common-header
is-election-portal="true"
id="main-content"
buttons-info="{{ buttonsInfo }}"
></div>

Expand Down Expand Up @@ -54,9 +57,9 @@ <h1 class="text-center election-title">

<div class="container-fluid background second">
<div class="container">
<div class="row">
<div class="row" id="main-content">
<div ui-view></div>
</div>
</div>
</div>
<div avb-common-footer></div>
<div avb-common-footer id="footer"></div>
4 changes: 4 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@
"legal": {
"title": "Legal",
"contact": "contact"
},
"skipLinks": {
"skipToMain": "Skip to main content",
"skipToFooter": "Skip to footer"
}
}
}
4 changes: 4 additions & 0 deletions locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@
"legal": {
"title": "Legal",
"contact": "contacto"
},
"skipLinks": {
"skipToMain": "Saltar al contenido principal",
"skipToFooter": "Saltar al pie de página"
}
}
}

0 comments on commit 97d37b6

Please sign in to comment.