Skip to content

Commit b124239

Browse files
Create default.html
1 parent 70a4917 commit b124239

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

_layouts/default.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!doctype html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
7+
{% seo %}
8+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9+
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script>
10+
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
11+
<!--[if lt IE 9]>
12+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
13+
<![endif]-->
14+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
15+
16+
{% include head-custom.html %}
17+
</head>
18+
<body>
19+
20+
<header>
21+
<h1>{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
22+
<p>{{ page.description | default: site.description | default: site.github.project_tagline }}</p>
23+
</header>
24+
<div class="wrapper">
25+
<nav>
26+
<ul></ul>
27+
</nav>
28+
<section>
29+
{{ content }}
30+
31+
</section>
32+
<footer>
33+
{% if site.github.is_project_page %}
34+
<p>Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
35+
{% endif %}
36+
</footer>
37+
</div>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)