aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Whiteland <dave@mysociety.org>2012-04-17 08:36:17 +0100
committerDave Whiteland <dave@mysociety.org>2012-04-17 08:36:17 +0100
commitfb69f527e801c33fdeacd1ff121caa384205fdb7 (patch)
treea6af0176f2f9b64144fda1f18c81da0b529baa76
parent4699ea93ad9ae31a28ac977335d4e8f35b621975 (diff)
fixed wrong css class on nav sidebar items in Barnet footer
-rw-r--r--templates/web/barnet/footer.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/web/barnet/footer.html b/templates/web/barnet/footer.html
index 1e3d8b466..32c6b5f7b 100644
--- a/templates/web/barnet/footer.html
+++ b/templates/web/barnet/footer.html
@@ -7,10 +7,10 @@
<div class="navigation active">
<h2><a href="/">FixMyStreet</a></h2>
<ul>
- <li class="section">[% c.req.uri.path == '/' ? '<strong>Report a problem</strong>' : '<a href="/">Report a problem</a>' %]</li>
- <li class="section">[% c.req.uri.path == '/reports/Barnet' ? '<strong>All reports</strong>' : '<a href="/reports/Barnet">All reports</a>' %]</li>
- <li class="section">[% c.req.uri.path == '/alert' ? '<strong>Local alerts</strong>' : '<a href="/alert">Local alerts</a>' %]</li>
- <li class="section">[% c.req.uri.path == '/faq' ? '<strong>Help</strong>' : '<a href="/faq">Help</a>' %]</li>
+ <li>[% c.req.uri.path == '/' ? '<strong>Report a problem</strong>' : '<a href="/">Report a problem</a>' %]</li>
+ <li>[% c.req.uri.path == '/reports/Barnet' ? '<strong>All reports</strong>' : '<a href="/reports/Barnet">All reports</a>' %]</li>
+ <li>[% c.req.uri.path == '/alert' ? '<strong>Local alerts</strong>' : '<a href="/alert">Local alerts</a>' %]</li>
+ <li class="lastItem">[% c.req.uri.path == '/faq' ? '<strong>Help</strong>' : '<a href="/faq">Help</a>' %]</li>
</ul>
</div>
<div class="clear"></div>