Sfoglia il codice sorgente

Overhaul about section

Overhauled to be a valid h-entry microformat. Also updated to be an
article with sections.
Bee Hudson 1 anno fa
parent
commit
1e8969c979
1 ha cambiato i file con 17 aggiunte e 8 eliminazioni
  1. 17 8
      layouts/partials/about.html

+ 17 - 8
layouts/partials/about.html

@@ -1,9 +1,18 @@
-<section class="panel my-2">
-	<h1 class="blog-post--title">Welcome to {{ .Site.Title }}</h1>
-    <div class="blog-post--body">
-        <p>The Hive is my corner of the web to be myself. I like to write on a wide array of topics ranging from technology, cryptography, hacking, philophy, and just general life "things". I also post JavaScript prototypes from time to time, which you can find in my <a href="/projects/" rel="me">projects</a> directory.</p>
-        <p>If you want to drop me a line, email me at the address in the footer. To keep things private, use <a href=".well-known/apisnecros.txt" rel="me">my public key</a>.</p>
-        <h2>Indie Web</h2>
-        <p>I am huge supporter of the <a href="https://indieweb.org/" target="_blank">Indie Web</a> movement, and thus make use of a lot of the principals and features that drive it. I encourage anyone and everyone to participate, and help take back the internet from the monopolies who try to keep us subjugated.</p>
+<article class="panel my-2 h-entry">
+    <div class="e-content blog-post--body">
+        <section>
+            <h1 class="p-name">Welcome to {{ .Site.Title }}</h1>
+            <p>The Hive is my corner of the web to be myself. I like to write on a wide array of topics ranging from technology, cryptography, hacking, philophy, and just general life "things". I also post JavaScript prototypes from time to time, which you can find in my <a href="/projects/" rel="me">projects</a> directory.</p>
+            <p>If you want to drop me a line, email me at the address in the footer. To keep things private, use <a href=".well-known/apisnecros.txt" rel="me">my public key</a>.</p>
+        </section>
+        <section>
+            <h2>Indie Web</h2>
+            <p>I am huge supporter of the <a href="https://indieweb.org/" target="_blank">Indie Web</a> movement, and thus make use of a lot of the principals and features that drive it. I encourage anyone and everyone to participate, and help take back the internet from the monopolies who try to keep us subjugated.</p>
+        </section>
     </div>
-</section>
+    <div class="hidden">
+		<span class="p-author h-card"><a href="{{ .Site.BaseURL }}" rel="author me">{{ .Site.Params.Author }}</a></span>
+		<span class="dt-published">Jun 17, 2022</span>
+		<span class="dt-updated">Jan 10, 2024</span>
+    </div>
+</article>