blob: 1a46ea97c12431c517ac5a1d9f0b305eee8400fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<h1 id="mgnt">[% template.title or site.title or c.config.apptitle %]</h1>
<div class="hnav">
<ul class="hnav">
[% FOREACH page IN pages %]
<li><a href="[% c.uri_for(page.page) %]">[% page.title %]</a></li>
[% END %]
[% IF c.user.username %]
<li><strong><a href="[% c.uri_for("/user") %]">[% c.user.username %]</a></strong></li>
<li><a href="/user/logout">[% l('Log out') %]</a></li>
[% END %]
</ul>
</div>
|