mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-04 15:00:02 -04:00
16 lines
509 B
HTML
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)} |