Commit Diff


commit - adaa0b3b043a08ed4a38a9911530eb323b72c9c4
commit + cec162d9e9431de6f3ba5bb45af735b0dae5072d
blob - 68bbc487da8b2dde72da62ae343b88a7aba21478
blob + 5fb5ee4b5651af0f7c725faf1abef5e526cb260a
--- index.html
+++ index.html
@@ -4,12 +4,29 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <title>Home | </title>
+  <style>
+    body {
+      max-width: 700px;
+      margin: 40px auto;
+      padding: 0 16px;
+      font-family: sans-serif;
+      line-height: 1.6;
+    }
+    nav a {
+      margin-right: 12px;
+    }
+  </style>
 </head>
 <body>
+  <nav>
+    <a href="/">Home</a>
+    <a href="/about/">About</a>
+  </nav>
   <main>
     <h1 id="hello">Hello</h1>
 <p>This is my site.</p>
 <p>It is built from Markdown and rendered with a tiny template.</p>
+<p><a href="/about/">About</a></p>
 
   </main>
 </body>
blob - /dev/null
blob + e2cbfed55c50321664097508764ddf6be524c637 (mode 644)
--- /dev/null
+++ about/index.html
@@ -0,0 +1,32 @@
+<!doctype html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <title>About | </title>
+  <style>
+    body {
+      max-width: 700px;
+      margin: 40px auto;
+      padding: 0 16px;
+      font-family: sans-serif;
+      line-height: 1.6;
+    }
+    nav a {
+      margin-right: 12px;
+    }
+  </style>
+</head>
+<body>
+  <nav>
+    <a href="/">Home</a>
+    <a href="/about/">About</a>
+  </nav>
+  <main>
+    <h1 id="about">About</h1>
+<p>About page.</p>
+<p><a href="/">Home</a></p>
+
+  </main>
+</body>
+</html>
blob - 481a1fc352e786c73488da614224f5a4c49ea515
blob + f87092d84c3ac441ad722f85dc723909dd59d487
--- sitemap.xml
+++ sitemap.xml
@@ -3,4 +3,7 @@
     <url>
         <loc>https://web.m7o.org/</loc>
     </url>
+    <url>
+        <loc>https://web.m7o.org/about/</loc>
+    </url>
 </urlset>