Files
sqlalchemy/doc/build/templates/content_layout.html
T
2007-03-17 15:14:53 +00:00

16 lines
509 B
HTML

## defines the default layout for normal documentation pages (not including the index)
<%inherit file="base.html"/>
<%page args="toc, extension, paged"/>
<%namespace file="nav.html" import="topnav, pagenav, bottomnav"/>
<%
current = toc.get_by_file(self.template.module.filename)
%>
<A name="<% current.path %>"></a>
${topnav(item=current, toc=toc, extension=extension, paged=paged)}
${next.body(toc=toc, extension=extension, paged=paged)}
${bottomnav(item=current, extension=extension, paged=paged)}