-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
41 lines (41 loc) · 1.45 KB
/
template.html
File metadata and controls
41 lines (41 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%= og_tags %>
<script
src="https://kit.fontawesome.com/6b5e91c70a.js"
crossorigin="anonymous"
></script>
<title><%= sitename || title %></title>
</head>
<body>
<header class="sticky dropshadow">
<h1 class="logo text-center">
<a href="/" title="home"
><span class="daz">DAZ</span
><span class="codes mono-font"></codes></span></a
>
</h1>
<nav>
<a href="/blog" title="my blog">Blog</a>
<a href="/projects" title="my projects">Projects</a>
<a href="/books" title="my books">Books</a>
</nav>
</header>
<main class="container"><%= content %></main>
<footer>
<p class="text-xs">
This site was made with
<a
href="https://swifty-oo3v.onrender.com"
title="Swifty, the super speedy static site generator"
>Swifty</a
>, the super speedy static site generator © DAZ 2026
</p>
</footer>
</body>
</html>