diff options
author | gennyble <gen@nyble.dev> | 2024-12-18 00:28:23 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-12-18 00:28:23 -0600 |
commit | fe31f2e8b67bda0b7a3e456285047d67ceed27d9 (patch) | |
tree | b1e1dda1128420178ad2257917ed33fe15f9566e | |
parent | 63b30baca240df31e2282c2e8225dc057f67fca3 (diff) | |
download | ∞-fe31f2e8b67bda0b7a3e456285047d67ceed27d9.tar.gz ∞-fe31f2e8b67bda0b7a3e456285047d67ceed27d9.zip |
Stack overflow? Cat, help
-rwxr-xr-x | served/styles/post.css | 8 | ||||
-rw-r--r-- | served/words/debugging-my-sql-query.html | 2 | ||||
-rwxr-xr-x | served/words/weeknotes/2024/sol.html | 6 | ||||
-rwxr-xr-x | templates/post.html | 5 |
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 |