diff options
author | Struan Donald <struan@exo.org.uk> | 2012-05-03 17:10:29 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-05-03 17:10:29 +0100 |
commit | e0f2fa194580a9345060532a72f1445f0688ba3b (patch) | |
tree | a77f35703414275b56d51c2c437e86ba90e960b3 | |
parent | 36c1174b4678648ae05a56ebfaeeaf9f8aa716c4 (diff) |
fix incorrect paths
-rw-r--r-- | templates/web/barnet/footer.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/barnet/footer.html b/templates/web/barnet/footer.html index 693c36d1a..7982ad530 100644 --- a/templates/web/barnet/footer.html +++ b/templates/web/barnet/footer.html @@ -9,14 +9,14 @@ <div class="nav-wrapper-2"> <div id="main-nav" role="navigation"> <ul id="mysoc-menu"> - <li><a href="http://www.fixmystreet.com/">Powered by <img src="/cobrands/barnet/fms-logo.png" style="height:20px;"></a></li> + <li><a href="http://www.fixmystreet.com/">Powered by <img src="/cobrands/barnet/img/fms-logo.png" style="height:20px;"></a></li> </ul> <ul id="main-menu"> <li><[% IF c.req.uri.path == '/' %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn" >[% loc("Report a problem") %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/my' %]span[% ELSE %]a href="/my"[% END %]>[% loc("Your reports") %]</[% c.req.uri.path == '/my' ? 'span' : 'a' %]></li>[% - %]<li><[% IF c.req.uri.path == '/reports/Bromley' %]span[% ELSE %]a href="/reports/Barnet"[% END + %]<li><[% IF c.req.uri.path == '/reports/Barnet' %]span[% ELSE %]a href="/reports/Barnet"[% 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>[% |