mirror of
https://github.com/kennethreitz-archive/pocco.git
synced 2026-06-18 06:30:58 +00:00
47 lines
1.0 KiB
HTML
47 lines
1.0 KiB
HTML
<!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>
|