mitmproxy/doc-src/index.py

16 lines
633 B
Python
Raw Normal View History

2012-06-23 22:18:20 +00:00
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")),
2012-06-23 22:54:37 +00:00
Page("pathod.html", "pathod", namespace=dict(section="docs")),
Page("pathoc.html", "pathoc", namespace=dict(section="docs")),
Page("test.html", "libpathod.test", namespace=dict(section="docs")),
2012-06-23 22:18:20 +00:00
sitemap.Sitemap("sitemap.xml")
]