summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/build/content/documentation.myt20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/build/content/documentation.myt b/doc/build/content/documentation.myt
new file mode 100644
index 000000000..af73c2a61
--- /dev/null
+++ b/doc/build/content/documentation.myt
@@ -0,0 +1,20 @@
+<%flags>inherit='base.myt'</%flags>
+<%args>
+ extension
+ toc
+</%args>
+<%method title>
+ SQLAlchemy Documentation
+</%method>
+<& index.myt, toc=toc, extension=extension, onepage=True &>
+% for file in toc.filenames:
+% current = toc.get_by_file(file)
+<A name="<% current.path %>"></a>
+<& nav.myt:pagenav, item=current, extension=extension, onepage=True &>
+<div class="topnavmain">
+ <div class="topnavheader"><% current.description %></div>
+</div>
+<div class="sectioncontent">
+% m.comp(file + ".myt", toc=toc, extension=extension, onepage=True)
+</div>
+%