~jonas-drange/ubuntu-start-page/1252899-mobile-friendly

« back to all changes in this revision

Viewing changes to src/Mako-0.1.9/doc/build/content/documentation.html

  • Committer: Matthew Nuzum
  • Date: 2008-04-18 01:58:53 UTC
  • Revision ID: matthew.nuzum@canonical.com-20080418015853-2b8rf979z2c2exxl
adding files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%inherit file="base.html"/>
 
2
<%namespace name="tocns" file="toc.html"/>
 
3
<%namespace name="nav" file="nav.html"/>
 
4
<%page args="toc, extension"/>
 
5
 
 
6
${tocns.toc(toc, extension=extension, paged=False)}
 
7
 
 
8
<%def name="title()">
 
9
    Mako Documentation
 
10
</%def>
 
11
 
 
12
% for file in toc.filenames:
 
13
    <%
 
14
        item = toc.get_by_file(file)
 
15
    %>
 
16
    
 
17
    <A name="${item.path}"></a>
 
18
 
 
19
    ${nav.pagenav(item=item, paged=False, extension=extension)}
 
20
 
 
21
    ${self.get_namespace(file + '.html').body(toc=toc, extension=extension, paged=False)}
 
22
% endfor
 
23