Mercurial > hg > SimpleWiki
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/simplewiki/templates/navigation.html Tue Sep 07 17:50:04 2010 -0700 @@ -0,0 +1,18 @@ +<!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:py="http://genshi.edgewall.org/" + xmlns:xi="http://www.w3.org/2001/XInclude" + py:strip="True"> + + <!-- nav bar --> + <div class="site-nav"> + <ul> + <li py:for="link, name in links"> + <a href="${link}">${name}</a> + </li> + </ul> + </div> + +</html>