about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xserved/styles/post.css8
-rw-r--r--served/words/debugging-my-sql-query.html2
-rwxr-xr-xserved/words/weeknotes/2024/sol.html6
-rwxr-xr-xtemplates/post.html5
4 files changed, 13 insertions, 8 deletions
diff --git a/served/styles/post.css b/served/styles/post.css
index b0a4d5e..99f3b81 100755
--- a/served/styles/post.css
+++ b/served/styles/post.css
@@ -14,4 +14,12 @@
 
 p {
 	margin: 1.25rem 0;
+}
+
+#post-title {
+	margin-bottom: 0rem;
+}
+
+#published {
+	color: var(--text-dim);
 }
\ No newline at end of file
diff --git a/served/words/debugging-my-sql-query.html b/served/words/debugging-my-sql-query.html
index dde57cd..4b28be3 100644
--- a/served/words/debugging-my-sql-query.html
+++ b/served/words/debugging-my-sql-query.html
@@ -4,7 +4,7 @@ title=Debugging My SQL Query
 style=/styles/post.css
 style=writing.css
 
-published=2024-11-13 7:24pm
+published=2024-11-13 7:24pm CST
 
 description=Tiny retelling about debugging a weird SQL problem.
 art=images/awoo.png
diff --git a/served/words/weeknotes/2024/sol.html b/served/words/weeknotes/2024/sol.html
index d5620c3..748f653 100755
--- a/served/words/weeknotes/2024/sol.html
+++ b/served/words/weeknotes/2024/sol.html
@@ -11,12 +11,6 @@ published=2024-07-20 09:00
 description=wherein she briefly explains her absence and introduces a new calendar system
 ---
 
-<section style="color: var(--text-dim); display: grid; grid-template-columns: 1fr 1fr">
-	<div style="grid-column: 1 / 3;">month bounds (gregorian calendar)</div>
-	<div>start: June 18th, 2024</div>
-	<div style="text-align: right;">end: July 15th, 2024</div>
-</section>
-
 Dear _,
 
 It's been a doozy these last days! Here's what happened:
diff --git a/templates/post.html b/templates/post.html
index 850013f..0e72a1d 100755
--- a/templates/post.html
+++ b/templates/post.html
@@ -5,7 +5,10 @@
 	{%end}
 </nav>
 <main id="main-content" class="writing sized">
-	<h1>{title}</h1>
+	<h1 id="post-title">{title}</h1>
+	{%pattern published}
+	<section id="published">published: <time datetime="{published_machine}">{published_human}</time></section>
+	{%end}
 	{main}
 </main>
 {%end}
\ No newline at end of file