comparison bitsyblog/templates/navigation.html @ 15:36698624435b

blog page mostly works
author k0s <k0scist@gmail.com>
date Sun, 25 Oct 2009 17:25:58 -0400
parents fbf8f198ef67
children cf77bd13aad9
comparison
equal deleted inserted replaced
14:645aa0f3279f 15:36698624435b
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" 4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:py="http://genshi.edgewall.org/" 5 xmlns:py="http://genshi.edgewall.org/"
6 xmlns:xi="http://www.w3.org/2001/XInclude" 6 xmlns:xi="http://www.w3.org/2001/XInclude"
7 py:strip="True"> 7 py:strip="True">
8
8 <!-- nav bar --> 9 <!-- nav bar -->
9 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>
10 17
11 </html> 18 </html>