forked from katorlys/katorlys.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguestbook.html
More file actions
86 lines (71 loc) · 3.11 KB
/
guestbook.html
File metadata and controls
86 lines (71 loc) · 3.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guest book - Katorly Lab</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/soft-design-system.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- JS -->
<script type="text/javascript" src="assets/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="assets/js/soft-design-system.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
<!-- CACHE -->
<meta http-equiv="Cache-Control" content="max-age=86400 must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z2Q2Z42WL2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-Z2Q2Z42WL2');
</script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300&display=swap" rel="stylesheet">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="loader"></div>
<div class="content">
<!-- Header -->
<div id="header"></div>
<!-- Intro -->
<div id="intro" class="kl-bg text-light p-5 mb-4" style="background-image:url(img/guestbook_bg.jpg)">
<div class="container-fluid col-xxl-11 pt-4 pb-2">
<h1 class="display-5 fw-bold text-light">Guest book</h1>
<p class="lead">Check out our guest book and leave a message on it!</p>
</div>
</div>
<!-- /Intro -->
<!-- Guestbook -->
<section id="involving" class="pt-4">
<div class="container">
<div class="row mb-5">
<script src="https://utteranc.es/client.js" repo="katorlys/HelpCenter" issue-number="2"
theme="github-light" crossorigin="anonymous" async></script>
</div>
</div>
</section>
<!-- /Guestbook -->
<!-- Footer -->
<div id="footer"></div>
<!-- INCLUDES -->
<script type="text/javascript">
$("#header").load("assets/components/nav.html #header");
$("#footer").load("assets/components/nav.html #footer");
</script>
</div>
</body>
</html>