Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Findeton committed Jul 8, 2024
1 parent bbef531 commit 38d8389
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

<h1
class="election-header"
ng-if="election.presentation && election.presentation.voter_eligibility"
ng-bind-html="(election.presentation.voter_eligibility | customI18n : 'title')"
ng-if="election.presentation && election.presentation.voter_eligibility_screen"
ng-bind-html="(election.presentation.voter_eligibility_screen | customI18n : 'title')"
>
</h1>

<div
class="eligibility-description"
ng-if="election.presentation && election.presentation.voter_eligibility"
ng-bind-html="(election.presentation.voter_eligibility | customI18n : 'description')">
ng-if="election.presentation && election.presentation.voter_eligibility_screen"
ng-bind-html="(election.presentation.voter_eligibility_screen | customI18n : 'description')">
</div>

<main class="container" id="main-content">
Expand All @@ -37,8 +37,8 @@

<div
class="eligibility-footer"
ng-if="election.presentation && election.presentation.voter_eligibility"
ng-bind-html="(election.presentation.voter_eligibility | customI18n : 'footer')">
ng-if="election.presentation && election.presentation.voter_eligibility_screen"
ng-bind-html="(election.presentation.voter_eligibility_screen | customI18n : 'footer')">
</div>

<div avb-common-footer id="footer"></div>

0 comments on commit 38d8389

Please sign in to comment.