comparison simplewiki/templates/navigation.html @ 0:d5102c881cb5

initial commit
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 07 Sep 2010 17:50:04 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d5102c881cb5
1 <!DOCTYPE html
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:py="http://genshi.edgewall.org/"
6 xmlns:xi="http://www.w3.org/2001/XInclude"
7 py:strip="True">
8
9 <!-- nav bar -->
10 <div class="site-nav">
11 <ul>
12 <li py:for="link, name in links">
13 <a href="${link}">${name}</a>
14 </li>
15 </ul>
16 </div>
17
18 </html>