Add footer and notes in posts
Christian Krinitsin mail@krinitsin.com
Wed, 28 Jan 2026 11:34:03 +0100
5 files changed,
41 insertions(+),
7 deletions(-)
M
blog/build_blog.sh
→
blog/build_blog.sh
@@ -4,6 +4,6 @@ for f in md/*.md; do
date=$(head -n 6 $f | grep date | sed "s/\-//g" | grep -o "[0-9]\+") name=${f##*/} output="posts/${name%.md}.html" - pandoc "$f" --css=../../style.css --standalone --toc --highlight-style=zenburn -B header.html -o $output + pandoc "$f" --css=../../style.css --standalone --toc --highlight-style=zenburn -B header.html -A footer.html -o $output done
M
blog/md/writing_a_blog.md
→
blog/md/writing_a_blog.md
@@ -55,9 +55,11 @@ - I think the content (or the way the content is delivered) is easier to grasp
due to a different **target audience**. It’s less about polarising, more about personal knowledge extension. -(In this context, it is fair to talk about AI slop posts that get thrown onto +:::note +In this context, it is fair to talk about AI slop posts that get thrown onto Hacker News. Imo, that actively steers against everything I talked about so far -, and I am not a fan of it.) +, and I am not a fan of it. +::: This type of habit shift is exactly what I needed! I don’t feel the need anymore to stimulate myself with short-form videos, because I’m happy with the@@ -81,5 +83,6 @@
So this is my first blog post about creating blog posts (yikes, I feel like that was done before). ---- +:::note *AI-Note: Grammarly was used to fix grammar mistakes.* +:::
M
blog/posts/writing_a_blog.html
→
blog/posts/writing_a_blog.html
@@ -95,9 +95,11 @@ <li>I think the content (or the way the content is delivered) is easier
to grasp due to a different <strong>target audience</strong>. It’s less about polarising, more about personal knowledge extension.</li> </ul> -<p>(In this context, it is fair to talk about AI slop posts that get +<div class="note"> +<p>In this context, it is fair to talk about AI slop posts that get thrown onto Hacker News. Imo, that actively steers against everything I -talked about so far , and I am not a fan of it.)</p> +talked about so far , and I am not a fan of it.</p> +</div> <p>This type of habit shift is exactly what I needed! I don’t feel the need anymore to stimulate myself with short-form videos, because I’m happy with the (much less) time I’m spending on peoples’ blog@@ -119,7 +121,14 @@ reading a good blog post for my (for now imaginary) readers.</li>
</ul> <p>So this is my first blog post about creating blog posts (yikes, I feel like that was done before).</p> -<hr /> +<div class="note"> <p><em>AI-Note: Grammarly was used to fix grammar mistakes.</em></p> +</div> +<footer class="site-footer"> + <p> + © 2026 chris • + <a href="mailto:contact@krinitsin.com">contact@krinitsin.com</a> + </p> +</footer> </body> </html>
M
style.css
→
style.css
@@ -334,3 +334,19 @@ margin: 1.5em auto;
display: block; box-shadow: var(--shadow-md); } + +.site-footer { + border-top: 1px solid var(--bg2); + text-align: center; + color: var(--gray1); + font-size: 0.9em; +} + +.site-footer a { + color: var(--blue); +} + +.note { + font-size: 0.97em; + color: var(--gray0); +}