Mercurial > hg > TagInTheMiddle
comparison taginthemiddle/templates/navigation.html @ 0:1c5cbbde4299
initial commit of middleware tagging; doesnt yet work
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 04 May 2010 08:37:15 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1c5cbbde4299 |
---|---|
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> |