aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/index.py
blob: 85d3e33969d53027128980e0789d614ce56460e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from countershape import widgets, layout, html, blog, markup, sitemap
from countershape.doc import *

ns.foot = "Copyright 2012 Aldo Cortesi"
this.markup = markup.Markdown(extras=dict(footnotes=True))
this.layout = layout.FileLayout("_layout_full.html")
this.titlePrefix = ""
this.site_url = "http://corte.si"
pages = [
    Page("index.html", "overview", namespace=dict(section="index")),
    Page("docs.html", "docs", namespace=dict(section="docs")),
    sitemap.Sitemap("sitemap.xml")
]
ns.sidebar = widgets.SiblingPageIndex(
                        pages[0],
                        depth=1,
                        divclass="sidebarmenu"
                    )