-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathdefault.html
More file actions
60 lines (53 loc) · 2.25 KB
/
default.html
File metadata and controls
60 lines (53 loc) · 2.25 KB
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
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width,maximum-scale=3">
<link rel="stylesheet" type="text/css" media="screen" href="{{ 'assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<link rel="stylesheet" type="text/css" media="screen" href="{{ 'stylesheets/custom.css?v=1.0' | relative_url }}">
{% seo %}
{% include head-custom.html %}
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
{% if site.github.is_project_page %}
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
{% endif %}
<p id="project_title">{{ site.title | default: site.github.repository_name }}</p>
<p id="project_tagline">{{ site.description | default: site.github.project_tagline }}</p>
<nav>
<ul>
<li><a href="{{ site.github.url }}">Documentation</a></li>
<li><a href="{{ "contributing.html" | relative_url }}">Contribute</a></li>
<li><a href="{{ "changelog.html" | relative_url }}">Changelog</a></li>
<li><a href="{{ "demos/" | relative_url }}">Demos</a></li>
<li><a href="{{ "https://www.joedolson.com/donate/" }}">Support</a></li>
</ul>
</nav>
{% if site.show_downloads %}
<section id="downloads">
<a class="zip_download_link" href="{{ site.github.zip_url }}">Download this project as a .zip file</a>
<a class="tar_download_link" href="{{ site.github.tar_url }}">Download this project as a tar.gz file</a>
</section>
{% endif %}
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
{{ content }}
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
{% if site.github.is_project_page %}
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
{% endif %}
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>