Skip to content

Commit 91b5760

Browse files
committed
Retry the default.html way
1 parent 8f1aab3 commit 91b5760

File tree

3 files changed

+42
-8
lines changed

3 files changed

+42
-8
lines changed

docs/_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+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
8+
<link rel="stylesheet" href="{{ '/assets/css/custom.css?v=' | append: site.github.build_revision | relative_url }}">
9+
{% include head-custom.html %}
10+
11+
{% seo %}
12+
</head>
13+
14+
<body>
15+
16+
<header>
17+
<div class="container">
18+
<a id="a-title" href="{{ '/' | relative_url }}">
19+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
20+
</a>
21+
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
22+
23+
<section id="downloads">
24+
{% if site.show_downloads %}
25+
<a href="{{ site.github.zip_url }}" class="btn">Download as .zip</a>
26+
<a href="{{ site.github.tar_url }}" class="btn">Download as .tar.gz</a>
27+
{% endif %}
28+
<a href="{{ site.github.repository_url }}" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
29+
</section>
30+
</div>
31+
</header>
32+
33+
<div class="container">
34+
<section id="main_content">
35+
{{ content }}
36+
</section>
37+
</div>
38+
</body>
39+
</html>

docs/assets/css/custom.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
strong {
2+
color:#b5e853
3+
}

docs/assets/css/style.scss

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)