-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
40 lines (36 loc) · 1.38 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body class="bg-gray-100">
<div class="container">
<div class="main-container container">
<!-- Navigation Bar -->
<div id="navbar"></div>
<!--quote box-->
<div class="quote-container">
<div class="centered-quote">
<p>
This is an archive of quotes I like from books I've read over the years. I've presented
them in this format as another method of resurfacing information and inspiration. Hopefully,
it's useful to you.
</p>
<p>
Quotes from books link to <a href="bookshop.org">Bookshop.org</a> using an affiliate link. I have not
added any tracking to these links and I have not included any tracking across the site. I do not believe
my static site hosts adds tracking information. If you find tracking, please submit an issue to the <a href="github.com/jmillerv/aphor">github repository</a>
</p>
</div>
</div>
</div>
</div>
</body>
<script type="module" src="js/header.js"></script>
<script type="module" src="js/nav.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
loadHeader(); // load header
loadNav(); // load navigation
});
</script>
</html>