-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
46 lines (34 loc) · 1.5 KB
/
template.html
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
<div id="body">
<div id="header">
<div class="travel menu">
<a id="menu_toggle" href="#project_navigation" data-toggle="dropdown" data-target="#project_navigation"><i class="icon-list icon-white"></i></a>
</div>
<div class="travel {{previous.disabled}}" data-role="pager-previous">
<a href="{{previous.url}}" title="Back to the previous page"><i class="icon-chevron-left icon-white"></i></a>
</div>
<div class="travel right {{next.disabled}}" data-role="pager-next">
<a href="{{next.url}}" title="Progress to the next page"><i class="icon-chevron-right icon-white"></i></a>
</div>
<div data-role="pager-status" class="page-count">
{{navigation.current}} of {{navigation.total}}
</div>
<div id="h1_wrapper">
<h1>{{project.name}}</h1>
</div>
</div>
<div id="project_navigation">
<div class="scroller">
<ul data-role="navigation">
{{navigation.html}}
</ul>
</div>
</div>
<div id="page_wrapper">
<div id="page_title">
<h2 data-role="page.name">{{page.name}}</h2>
</div>
<div id="page_wrapper_inner">
{{page.html}}
</div>
</div>
</div>