-
Notifications
You must be signed in to change notification settings - Fork 2
/
_Layout.html
73 lines (63 loc) · 2.27 KB
/
_Layout.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=utf-8">
<link rel="stylesheet" type="text/css" href="{{ wiki.base_path }}/css/gollum-static.css" media="all">
<link rel="stylesheet" type="text/css" href="{{ wiki.base_path }}/css/template-static.css" media="all">
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="{{ wiki.base_path }}/css/ie7.css" media="all">
<![endif]-->
<script type="text/javascript">
var baseUrl = '{{ wiki.base_path }}';
var pageFullPath = '{{ page.path }}';
</script>
<script type="text/javascript" src="{{ wiki.base_path }}/javascript/jquery-1.7.2-static.min.js"></script>
<script type="text/javascript" src="{{ wiki.base_path }}/javascript/gollum-static.js"></script>
<title>{{ page.title }}</title>
</head>
<body>
<div id="wiki-wrapper" class="page">
<div id="head">
<h1>{{ page.title }}</h1>
<ul class="actions">
<li class="search">
<script>
(function() {
var cx = '012232778698042022689:1zv1h-v_9o0';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchbox></gcse:searchbox>
</li>
<li class="minibutton"><a href="{{ wiki.base_path }}/"
class="action-home-page">Documentation home</a></li>
<li class="minibutton"><a href="https://www.rosettacommons.org/"
class="action-home-page">RosettaCommons Website</a></li>
<li class="minibutton"><a href="https://www.rosettacommons.org/docs/feedback?ref={{page.path}}"
class="action-home-page">Feedback</a></li>
</ul>
</div>
<div id="wiki-content">
<div class="">
<div id="wiki-body" class="gollum-{{ page.format }}-content">
<div class="{{ page.format }}-body">
{{ page.content }}
</div>
</div>
</div>
</div>
<div id="footer">
<p id="last-edit">Generated on {{ page.date }}</p>
</div>
<div id="search-results">
<gcse:searchresults></gcse:searchresults>
</div>
</div>
</body>
</html>