diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 13:03:40 +0100 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 13:03:40 +0100 |
| commit | d33d3663ecb166461d9cb5a78a29b44ee7a8fbb7 (patch) | |
| tree | fe8856f65d1dafa946150c5acbaf6e942ba3c026 /pathod/templates/docframe.html | |
| parent | 294774d6f0dee95b02a93307ec493b111b7f171e (diff) | |
| download | mitmproxy-d33d3663ecb166461d9cb5a78a29b44ee7a8fbb7.tar.gz mitmproxy-d33d3663ecb166461d9cb5a78a29b44ee7a8fbb7.tar.bz2 mitmproxy-d33d3663ecb166461d9cb5a78a29b44ee7a8fbb7.zip | |
combine projects
Diffstat (limited to 'pathod/templates/docframe.html')
| -rw-r--r-- | pathod/templates/docframe.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pathod/templates/docframe.html b/pathod/templates/docframe.html new file mode 100644 index 00000000..797de20a --- /dev/null +++ b/pathod/templates/docframe.html @@ -0,0 +1,26 @@ +{% extends "layout.html" %} + +{% macro subs(s) %} + {% if subsection == s %} + class="active" + {% endif %} +{% endmacro %} + +{% block content %} +<div class="row"> + <div class="span3"> + <div class="well sidebar-nav"> + <ul class="nav nav-list"> + <li {{subs( "pathod")}}><a href="/docs/pathod">pathod</a></li> + <li {{subs( "pathoc")}}><a href="/docs/pathoc">pathoc</a></li> + <li {{subs( "lang")}}><a href="/docs/language">language</a></li> + <li {{subs( "pathod")}}><a href="/docs/pathod">pathod</a></li> + <li {{subs( "test")}}><a href="/docs/test">pathod.test</a></li> + </ul> + </div> + </div> + <div class="span9"> + {% block body %} {% endblock %} + </div> +</div> +{% endblock %} |
