forked from jejacks0n/mercury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
annotated_source.template
57 lines (49 loc) · 1.54 KB
/
annotated_source.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Mercury Editor - Annotated Source - {{ title }}</title>
<link href="/mercury/assets/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css"/>
<script src="/mercury/assets/javascripts/application.js" type="text/javascript"></script>
<!--[if lt IE 7]>
<script type="text/javascript" src="/mercury/assets/javascripts/unitpngfix.js"></script>
<![endif]-->
</head>
<body>
<div id="background"></div>
<h1 id="logo"><a href="/mercury">Mercury Editor</a></h1>
<ul id="navigation">
<li><a href="/mercury">Home</a></li>
<li><a href="/mercury/downloads">Downloads</a></li>
<li><a href="/mercury/walkthrough">Walkthrough</a></li>
<li><a href="/mercury/documentation">Documentation</a></li>
<li class="active"><a href="/mercury/annotated_source">Annotated Source</a></li>
</ul>
<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-{{ section_id }}'>
<td class=docs>
<div class="pilwrap">
<a class="pilcrow" href="#section-{{ section_id }}">¶</a>
</div>
{{{ docs }}}
</td>
<td class=code>
<div class='highlight'><pre>{{{ code }}}</pre></div>
</td>
</tr>
{{/sections}}
</table>
<div id="footer">
<hr>
Copyright 2011 Jeremy Jackson. All rights reserved.
</div>
</body>
</html>