about summary refs log tree commit diff stats
path: root/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html43
1 files changed, 36 insertions, 7 deletions
diff --git a/templates/post.html b/templates/post.html
index d08ea86..7574a1f 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -11,6 +11,7 @@
       title=""
       href="/atom.xml"
     />
+    <link href="" rel="canonical" />
     <style></style>
   </head>
   <body>
@@ -27,24 +28,52 @@
       <article class="h-entry">
         <h1 class="p-name">Post Title</h1>
         <p>
-          <time class="dt-published" pubdate>2000-12-31</time>
+          <time class="dt-published">2000-12-31</time>
         </p>
         <div class="e-content">
           Enim lobortis scelerisque fermentum dui faucibus in ornare quam
           viverra. Eget egestas purus viverra accumsan in nisl nisi, scelerisque
           eu ultrices vitae, auctor eu augue ut lectus arcu, bibendum at.
+
+          <code>/bin/test</code>
+
+          <pre>
+            <code class="language-conf">
+foo=bar
+            </code>
+          </pre>
+
+          <table>
+            <thead>
+              <tr>
+                <th>One</th>
+                <th>Two</th>
+                <th>Three</th>
+              </tr>
+            </thead>
+            <tbody>
+              <tr>
+                <td>1</td>
+                <td>2</td>
+                <td>3</td>
+              </tr>
+            </tbody>
+          </table>
         </div>
-        <ul class="p-categories tags">
+        <div class="tags">
           Tags:
-          <li><a class="p-category" href="/tags/sample/">#sample</a></li>
-        </ul>
+          <ul class="p-categories tags">
+            <li><a class="p-category" href="/tags/sample/">#sample</a></li>
+          </ul>
+        </div>
       </article>
     </main>
     <footer>
-      Licensed under a
+      Content is
       <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"
-        >Creative Commons Attribution 4.0 International License</a
-      >.
+        >CC BY 4.0</a
+      >. <a href="https://git.alanpearce.eu/website/">Site source code</a> is
+      <a href="https://opensource.org/licenses/MIT">MIT</a>
     </footer>
   </body>
 </html>