-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
52 lines (40 loc) · 1.58 KB
/
Copy pathdefault.html
File metadata and controls
52 lines (40 loc) · 1.58 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
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
{%- include head.html -%}
<body>
{%- include post-menu.html -%}
<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>
{%- include footer.html -%}
<!-- Floating Buttons(start) -->
<a href="#header" class="float" style="position:fixed; width:50px; height:50px;
bottom:40px; right:40px; background-color:#0C9;
color:#FFF; border-radius:40px; text-align:center;
box-shadow: 2px 2px 3px #999;"
>
<i class="fa fa-arrow-up my-float" style="margin-top:18px;"></i>
</a>
<a href="{{ site.url }}/blog" class="float" style="position:fixed; width:50px; height:50px;
bottom:100px; right:40px; background-color:#0C9;
color:#FFF; border-radius:40px; text-align:center;
box-shadow: 2px 2px 3px #999;"
>
<i class="fa fa-arrow-left my-float" style="margin-top:18px;"></i>
</a>
<!-- Floating Buttons(end) -->
</body>
<script>
$(document).ready(function () {
console.log("hi");
});
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
</html>