Commit Diff


commit - /dev/null
commit + 0cf4d44c43e89042dff427b5b9cf8e99320efbd8
blob - /dev/null
blob + 20c20944a25427c5485819921964a206ad69d332 (mode 644)
--- /dev/null
+++ _footer.html
@@ -0,0 +1,6 @@
+</main>
+<footer>
+<small>wiki.voidq.xyz</small>
+</footer>
+</body>
+</html>
blob - /dev/null
blob + 07deb512abf63d4fb190e589770c8cb8efa2b604 (mode 644)
--- /dev/null
+++ _header.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<link rel="stylesheet" href="/style.css">
+</head>
+<body>
+<header>
+<nav><a href="/">home</a></nav>
+</header>
+<main>
blob - /dev/null
blob + 06fe0273bd883da565df32c9370b5d1c4be6e860 (mode 644)
--- /dev/null
+++ about.md
@@ -0,0 +1,5 @@
+# About
+
+Minimal wiki running on OpenBSD.
+Built with got, ssg, and lowdown.
+No database. No PHP. No runtime.
blob - /dev/null
blob + d05a7f4f45e4828200b924481b3860389b9b0c91 (mode 644)
--- /dev/null
+++ index.md
@@ -0,0 +1,5 @@
+# wiki.voidq.xyz
+
+Welcome.
+
+## Pages
blob - /dev/null
blob + 990f9a396e730b85646234ce324a45c7c8bbf270 (mode 644)
--- /dev/null
+++ style.css
@@ -0,0 +1,22 @@
+*{box-sizing:border-box}
+body{
+  max-width:680px;
+  margin:2rem auto;
+  padding:0 1rem;
+  font-family:sans-serif;
+  line-height:1.6;
+  color:#222;
+  background:#fff;
+}
+nav{margin-bottom:2rem}
+nav a{text-decoration:none;color:#555}
+h1,h2,h3{line-height:1.2}
+a{color:#0070f3}
+pre{
+  background:#f5f5f5;
+  padding:1rem;
+  overflow-x:auto;
+  border-radius:4px;
+}
+code{background:#f5f5f5;padding:.1em .3em;border-radius:3px}
+footer{margin-top:3rem;color:#999;font-size:.85rem}