-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
82 lines (80 loc) · 1.91 KB
/
default.html
File metadata and controls
82 lines (80 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
<link rel="icon" type="image/x-icon" href="/public/favicon.ico">
{% seo %}
{% feed_meta %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": {{ site.author | jsonify }},
"url": {{ site.url | jsonify }},
"jobTitle": "Senior Software Engineer",
"worksFor": {
"@type": "Organization",
"name": "GitHub, Inc.",
"url": "https://github.com"
},
"description": {{ site.description | jsonify }},
"sameAs": [
"https://github.com/francisfuzz",
"https://www.linkedin.com/in/francis-batac"
]
}
</script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
color: #333;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
nav {
margin-bottom: 2em;
padding-bottom: 1em;
border-bottom: 1px solid #e1e4e8;
}
nav a {
margin-right: 1em;
}
.post-meta {
color: #666;
font-size: 0.9em;
}
.post-list {
list-style: none;
padding: 0;
}
.post-list li {
margin-bottom: 1.5em;
}
</style>
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/resume/">Résumé</a>
<a href="/posts/">Posts</a>
<a href="/gear/">Gear</a>
</nav>
<main>
{{ content }}
</main>
<footer style="margin-top: 3em; padding-top: 1em; border-top: 1px solid #e1e4e8; color: #666; font-size: 0.9em;">
<p>© {{ 'now' | date: "%Y" }} {{ site.author }}</p>
</footer>
</body>
</html>