blob: 0a21454f5c6110784b99eed22708af76f41989a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="sticky-sidebar">
<aside>
<ul class="plain-list">
<li>[% INCLUDE link h='/faq' t=loc('Frequently Asked Questions') %]</li>
<!-- <li>[% INCLUDE link h='/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 %]
|