-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
50 lines (43 loc) · 1.88 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
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
{% include head-custom.html %}
</head>
<body>
<div class="wrapper">
<header>
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
{% if site.logo %}
<a href="https://cactool.github.io"><img src="{{site.logo | relative_url}}" alt="Logo" /></a>
{% endif %}
<p>{{ site.description | default: site.github.project_tagline }}</p>
<p class="view"><a href= "/setup/setup">Installation Guides</a></p>
<p class="view"><a href= "/setup/config">Configuration</a></p>
<p class="view"><a href= "/worksheet/worksheets">Tutorials Worksheets</a></p>
<p class="view"><a href= "/FAQ">FAQ</a></p>
<p class="view"><a href="https://github.com/cactool/cactool">Visit the Github Page</a></p>
{% if site.show_downloads %}
<ul class="downloads">
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
</ul>
{% endif %}
</header>
<section>
{{ content }}
</section>
<footer>
</footer>
</div>
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
</body>
</html>