-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
62 lines (56 loc) · 1.59 KB
/
default.html
File metadata and controls
62 lines (56 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
<style>
.site-nav {
background: #f8f9fa;
padding: 1rem;
margin-bottom: 2rem;
border-bottom: 1px solid #e9ecef;
}
.site-nav a {
margin-right: 1rem;
text-decoration: none;
color: #007bff;
font-weight: 500;
}
.site-nav a:hover {
text-decoration: underline;
}
.site-nav a.current {
color: #495057;
font-weight: bold;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}
.footer {
margin-top: 3rem;
padding: 2rem 0;
border-top: 1px solid #e9ecef;
text-align: center;
color: #6c757d;
}
</style>
</head>
<body>
{% include navigation.html %}
<div class="content">
<main class="page-content" aria-label="Content">
{{ content }}
</main>
</div>
<footer class="footer">
<p>© {{ site.time | date: '%Y' }} Commit Check. Licensed under the MIT License.</p>
</footer>
</body>
</html>