]> git.neb.cc Git - xyz.git/commitdiff
Add books page
authorBen Larson <[email protected]>
Sat, 15 Jan 2022 03:36:34 +0000 (21:36 -0600)
committerBen Larson <[email protected]>
Sat, 15 Jan 2022 03:36:34 +0000 (21:36 -0600)
src/books/index.html [new file with mode: 0644]

diff --git a/src/books/index.html b/src/books/index.html
new file mode 100644 (file)
index 0000000..f2c3f1f
--- /dev/null
@@ -0,0 +1,70 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta
+      name="viewport"
+      content="width=device-width, initial-scale=1, viewport-fit=cover"
+    />
+    <meta
+      name="theme-color"
+      content="#eee"
+      media="(prefers-color-scheme: light)"
+    />
+    <meta
+      name="theme-color"
+      content="#000"
+      media="(prefers-color-scheme: dark)"
+    />
+    <meta charset="UTF-8" />
+    <title>Ben's Books</title>
+    <link rel="stylesheet" href="/styles/main.css" />
+    <style>
+      ol {
+        list-style-position: inside;
+      }
+
+      ul::before {
+        content: '';
+      }
+    </style>
+  </head>
+  <body>
+    <header>
+      <h1>Ben's Books</h1>
+    </header>
+    <main>
+      <ol reversed start="2022">
+        <li>
+          <ul>
+            <li>The Boys in the Boat - Daniel James Brown - Reading</li>
+            <li>The Ghost Map - Steven Johnson - 3/5</li>
+          </ul>
+        </li>
+        <li>
+          <ul>
+            <li>Sea of Darkness - Roland Huntford - 4/5</li>
+            <li>Gunnar's Daughter - Sigrid Undset - 4/5</li>
+            <li>Two Planks and a Passion - Roland Huntford - 4/5</li>
+            <li>Kristin Lavransdatter: The Cross - Sigrid Undset - 4/5</li>
+            <li>
+              Kristin Lavransdatter: The Mistress of Husaby - Sigrid Undset -
+              4/5
+            </li>
+            <li>
+              Kristin Lavransdatter: The Bridal Wreath - Sigrid Undset - 4/5
+            </li>
+            <li>Children of Dune - Frank Herbert - 3/5</li>
+            <li>Dune Messiah - Frank Herbert - 3/5</li>
+            <li>Dune - Frank Herbert - 4/5</li>
+            <li>Nansen - Roland Huntford - 4/5</li>
+            <li>Into Thin Air - Jon Krakauer - 4/5</li>
+            <li>Shackleton - Roland Huntford - 5/5</li>
+            <li>Njal's Saga - 4/5</li>
+            <li>The Last Place on Earth - Roland Huntford - 5/5</li>
+            <li>Christus Vincit - Athanasius Schneider - 4/5</li>
+          </ul>
+        </li>
+      </ol>
+    </main>
+  </body>
+</html>