This repository was archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdefault.html
102 lines (79 loc) · 3.59 KB
/
default.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--link href="https://fonts.googleapis.com/css?family=Open+Sans" rel='stylesheet' type='text/css'-->
<link href="https://fonts.googleapis.com/css?family=Mukta+Vaani:200,300,400,600,800" rel="stylesheet">
<link rel="stylesheet" href="{{ '/assets/css/style.css?' | relative_url }}" media="screen" type="text/css">
<link rel="stylesheet" href="{{ '/assets/css/print.css' | relative_url }}" media="print" type="text/css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>{{ site.title | default: site.github.repository_name }}</title>
</head>
<body>
<header>
<div class="inner">
<a href="{{ '/' | absolute_url }}">
<h1>{{ site.title | default: site.github.repository_name }}</h1>
</a>
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
<a href="{{ '/' | absolute_url }}" class="button"></a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
{{ content }}
</section>
<aside id="sidebar">
<hr/>
<div class="moveright">
{% if site.links.source %}
<h2><a href="{{ site.links.source }}"><p>Sources</p></a></h2>
{% endif %}
{% if site.links.javadocs %}
<h2><a href="{{ site.links.javadocs }}"><p>APIs</p></a></h2>
{% endif %}
{% if site.links.docs %}
<h2><a href="{{ site.links.docs }}"><p>Documentation</p></a></h2>
{% endif %}
{% if site.links.faq %}
<h2><a href="{{ site.links.faq }}"><p>FAQ</p></a></h2>
{% endif %}
{% if site.links.download %}
<h2><a href="{{ site.links.download }}"><p>Download</p></a></h2>
{% endif %}
{% if site.links.hide_issuetracker != true %}
<h2><a href="{{ site.github.issues_url }}"><p>Issue Tracker</p></a></h2>
{% endif %}
{% if site.links.mailinglist %}
<h2><a href="{{ site.links.mailinglist }}"><p>Mailing List</p></a></h2>
{% endif %}
<h2><a href="CONTRIBUTING"><p>Contribute</p></a></h2>
<h2><a href="LICENSE"><p>License</p></a></h2>
</div>
<hr/>
<div class="sponsor">
<p>Sponsored by<a href="http://www.oracle.com" class="oraclelogo"></a></p>
</div>
</aside>
</div>
</div>
<div class="footer"><a id="copyright" class="oracle" href="https://www.oracle.com/legal/copyright.html">© Oracle</a> | By contributing to this project, you are agreeing to the terms of use described <a href="CONTRIBUTING">here</a>.</div>
{% if site.google_analytics %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("{{ site.google_analytics }}");
pageTracker._trackPageview();
} catch(err) {}
</script>
{% endif %}
</body>
</html>