Skip to content

Commit 36ddf4f

Browse files
committed
Remove main header
1 parent dac1312 commit 36ddf4f

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
Session.vim
2+
.DS_Store

Diff for: _layouts/default.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: 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+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
{% include head-custom.html %}
11+
</head>
12+
<body>
13+
<div class="container-lg px-3 my-5 markdown-body">
14+
15+
{{ content }}
16+
17+
{% if site.github.private != true and site.github.license %}
18+
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
19+
This site is open source. {% github_edit_link "Improve this page" %}.
20+
</div>
21+
{% endif %}
22+
</div>
23+
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
24+
<script>anchors.add();</script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)