index — krinitsin.com @ e7529a549dc1e4fed511efaad82d2e57abdb656e

personal website

Add footer and notes in posts
Christian Krinitsin mail@krinitsin.com
Wed, 28 Jan 2026 11:34:03 +0100
commit

e7529a549dc1e4fed511efaad82d2e57abdb656e

parent

368928dc9b465889779cd3f0d459ecf108565430

M blog/build_blog.shblog/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
A blog/footer.html

@@ -0,0 +1,6 @@

+<footer class="site-footer"> + <p> + &copy; 2026 chris • + <a href="mailto:contact@krinitsin.com">contact@krinitsin.com</a> + </p> +</footer>
M blog/md/writing_a_blog.mdblog/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.htmlblog/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> + &copy; 2026 chris • + <a href="mailto:contact@krinitsin.com">contact@krinitsin.com</a> + </p> +</footer> </body> </html>
M style.cssstyle.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); +}