1
0
Fork 0

* basic template and JQuery infrastructure

* gva controller
This commit is contained in:
Jan Dittberner 2008-06-03 20:24:32 +00:00
parent 014f674b6d
commit 292c102db8
7 changed files with 74 additions and 109 deletions

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
<%inherit file="site.mako" />
<h1>Main page</h1>
<%def name="title()">Main page</%def>

View file

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
<html>
<head>
<title>${self.title()}</title>
${h.javascript_include_tag('jquery.js')}
</head>
<body>
<ul id="menu">
% for item in c.menu:
<li class="${h.cssclasses(item)}">${h.menulink(item)}</li>
% endfor
</ul>
<div id="content">
${next.body()}
</div>
</body>
</html>
<%def name="title()">Site</%def>