diff options
Diffstat (limited to 'templates/web/harrogate')
-rw-r--r-- | templates/web/harrogate/footer.html | 15 | ||||
-rw-r--r-- | templates/web/harrogate/header.html | 8 | ||||
-rwxr-xr-x | templates/web/harrogate/static/privacy.html | 2 |
3 files changed, 12 insertions, 13 deletions
diff --git a/templates/web/harrogate/footer.html b/templates/web/harrogate/footer.html index 4558b2381..f262f6156 100644 --- a/templates/web/harrogate/footer.html +++ b/templates/web/harrogate/footer.html @@ -14,34 +14,33 @@ <div class="nav-wrapper-2"> <div id="main-nav" role="navigation"> - <ul id="main-menu"> + <ul class="nav-menu nav-menu--main"> [% selected = c.req.uri.path == '/' %] - <li [% selected ? 'class="menu-item-selected"' : '' %]> - <[% IF selected %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn"> + <li><[% IF selected %]span[% ELSE %]a href="/"[% END %]> [% loc("Report a problem") %]</[% selected == '/' ? 'span' : 'a' %]></li> [% selected = c.req.uri.path == '/my' %] - <li [% selected ? 'class="menu-item-selected"' : '' %]> + <li> <[% IF selected %]span[% ELSE %]a href="/my"[% END %]> [% loc("Your reports") %]</[% selected ? 'span' : 'a' %]></li> [% selected = c.req.uri.path == '/reports/Harrogate' %] - <li [% selected ? 'class="menu-item-selected"' : '' %]> + <li> <[% IF selected %]span[% ELSE %]a href="/reports"[% END %]> [% loc("All reports") %]</[% selected ? 'span' : 'a' %]></li> [% selected = c.req.uri.path == '/alert' %] - <li [% selected ? 'class="menu-item-selected"' : '' %]> + <li> <[% IF selected %]span[% ELSE %]a href="/alert[% pc ? '/list?pc=' : '' %][% pc | uri %]"[% END %]> [% loc("Local alerts") %]</[% selected ? 'span' : 'a' %]></li> [% selected = c.req.uri.path == '/faq' %] - <li [% selected ? 'class="menu-item-selected"' : '' %]> + <li> <[% IF selected %]span[% ELSE %]a href="/faq"[% END %]> [% loc("Help") %]</[% selected ? 'span' : 'a' %]></li> [% selected = c.req.uri.path == '/privacy' %] - <li id="top-nav-privacy" [% selected ? 'class="menu-item-selected"' : '' %]> + <li class="nav-menu__item--privacy"> <[% IF selected %]span[% ELSE %]a href="/privacy"[% END %]> [% loc("Privacy") %]</[% selected ? 'span' : 'a' %]></li> </ul> diff --git a/templates/web/harrogate/header.html b/templates/web/harrogate/header.html index e40a38d94..bd319e250 100644 --- a/templates/web/harrogate/header.html +++ b/templates/web/harrogate/header.html @@ -1,8 +1,8 @@ <!doctype html> -<!--[if lt IE 7]><html class="no-js ie6 oldie" lang="[% lang_code %]"><![endif]--> -<!--[if IE 7]> <html class="no-js ie7 oldie" lang="[% lang_code %]"><![endif]--> -<!--[if IE 8]> <html class="no-js ie8 oldie" lang="[% lang_code %]"><![endif]--> -<!--[if IE 9]> <html class="no-js ie9 oldie" lang="[% lang_code %]"><![endif]--> +<!--[if lt IE 7]><html class="no-js ie6 iel8" lang="[% lang_code %]"><![endif]--> +<!--[if IE 7]> <html class="no-js ie7 iel8" lang="[% lang_code %]"><![endif]--> +<!--[if IE 8]> <html class="no-js ie8 iel8" lang="[% lang_code %]"><![endif]--> +<!--[if IE 9]> <html class="no-js ie9" lang="[% lang_code %]"><![endif]--> <!--[if gt IE 9]><!--><html class="no-js" lang="[% lang_code %]"><!--<![endif]--> <head> <meta name="viewport" content="initial-scale=1.0"> diff --git a/templates/web/harrogate/static/privacy.html b/templates/web/harrogate/static/privacy.html index 7f0f090e4..767f80fbf 100755 --- a/templates/web/harrogate/static/privacy.html +++ b/templates/web/harrogate/static/privacy.html @@ -7,7 +7,7 @@ <ul class="plain-list"> <li><a href="/faq">Frequently Asked Questions</a></li> <li><strong>Privacy and cookies</strong></li> - <li><a href="/contact">Contact [%- PROCESS 'site-name.html' -%]</a></li> + <li><a href="/contact">Contact [% site_name %]</a></li> </ul> </aside> </div> |