blob: 7411fcb652b4a51a08f1a927342acfb0e610b5ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="sticky-sidebar">
<aside>
<ul class="plain-list">
<li>[% INCLUDE link h='/faq' t=loc('Frequently Asked Questions') %]</li>
<li>[% INCLUDE link h='/about/posters' t='FixMyStreet Goodies' %]</li>
<li>[% INCLUDE link h='/about/privacy' t=loc('Privacy and cookies') %]</li>
<li>[% INCLUDE link h='/contact' t=tprintf(loc("Contact %s", "%s is the site name"), site_name) %]</li>
</ul>
</aside>
</div>
[% BLOCK link -%]
<[% IF c.req.uri.path == h %]strong[% ELSE %]a href="[% h %]"[% END %]>
[%- t -%]
</[% IF c.req.uri.path == h %]strong[% ELSE %]a[% END %]>
[%- END %]
|