diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-12-04 23:21:01 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-12-04 23:21:01 +0000 |
commit | 77f586419b3e4e0363767f10feb44ea7ca1c8624 (patch) | |
tree | 75fe4bb468e12f0dcdf7e79db3083c642953a674 | |
parent | 80c1280ae952ea8dc86829081e210d006ad64a0e (diff) |
add fms nav ready for oxford style (since we've hidden the usual one, Bromley-style)
-rw-r--r-- | templates/web/oxfordshire/header.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/web/oxfordshire/header.html b/templates/web/oxfordshire/header.html index 32518d66f..daef19251 100644 --- a/templates/web/oxfordshire/header.html +++ b/templates/web/oxfordshire/header.html @@ -42,6 +42,20 @@ <div style="clear:both"></div> <span class="header">FixMyStreet</span> </div> <!-- end of oxford header --> + <div id="oxford-main-menu" class="desk-only"> + <ul class="tabs"> + <li class="home first"><[% IF c.req.uri.path == '/' %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn" + >[% "Report" %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[% + %]<li><[% IF c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) %]span[% ELSE %]a href="/my"[% END + %]>[% loc("Your reports") %]</[% ( c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) ) ? 'span' : 'a' %]></li>[% + %]<li><[% IF c.req.uri.path == '/reports/Oxfordshire' %]span[% ELSE %]a href="/reports/Oxfordshire"[% END + %]>[% loc("All reports") %]</[% c.req.uri.path == '/reports' ? 'span' : 'a' %]></li>[% + %]<li><[% IF c.req.uri.path == '/alert' %]span[% ELSE %]a href="/alert[% pc ? '/list?pc=' : '' %][% pc | uri %]"[% END + %]>[% loc("Local alerts") %]</[% c.req.uri.path == '/alert' ? 'span' : 'a' %]></li>[% + %]<li class="last"><[% IF c.req.uri.path == '/faq' %]span[% ELSE %]a href="/faq"[% END + %]>[% loc("Help") %]</[% c.req.uri.path == '/faq' ? 'span' : 'a' %]></li> + </ul> + </div> <div class="wrapper"> |