diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2010-06-29 00:03:43 -0700 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2010-06-29 00:03:43 -0700 |
commit | 90faaccdb98a7cfdcebc5d0a8101b664604acef0 (patch) | |
tree | 1ebcbff2ad7f41e279eca2631c2591cc430dd2f8 /resources/pocco.html | |
download | pycco-90faaccdb98a7cfdcebc5d0a8101b664604acef0.tar.gz pycco-90faaccdb98a7cfdcebc5d0a8101b664604acef0.zip |
Initial commit. TODO: update README, make setup.py script, make gh-pages
Diffstat (limited to 'resources/pocco.html')
-rw-r--r-- | resources/pocco.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/resources/pocco.html b/resources/pocco.html new file mode 100644 index 0000000..9855a52 --- /dev/null +++ b/resources/pocco.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="content-type" content="text/html;charset=utf-8"> + <title>{{ title }}</title> + <link rel="stylesheet" href="pocco.css"> +</head> +<body> +<div id='container'> + <div id="background"></div> + {{#sources?}} + <div id="jump_to"> + Jump To … + <div id="jump_wrapper"> + <div id="jump_page"> + {{#sources}} + <a class="source" href="{{ url }}">{{ basename }}</a> + {{/sources}} + </div> + </div> + </div> + {{/sources?}} + <table cellspacing=0 cellpadding=0> + <thead> + <tr> + <th class=docs><h1>{{ title }}</h1></th> + <th class=code></th> + </tr> + </thead> + <tbody> + {{#sections}} + <tr id='section-{{ num }}'> + <td class=docs> + <div class="octowrap"> + <a class="octothorpe" href="#section-{{ num }}">#</a> + </div> + {{{ docs_html }}} + </td> + <td class=code> + <div class='highlight'><pre>{{{ code_html }}}</pre></div> + </td> + </tr> + {{/sections}} + </table> +</div> +</body> |