Add base files for new Jekyll site setup

Introduced initial setup for a Jekyll-based site, including configurations, layouts, assets, and styles. Added custom 404 page, favicon assets, SCSS themes, fonts, and a blog post template to establish the foundation for the site.
This commit is contained in:
Lars 2024-12-23 00:16:48 +01:00
parent 6f1566716d
commit 0764cfc61d
57 changed files with 3564 additions and 0 deletions

9
_includes/author.html Normal file
View file

@ -0,0 +1,9 @@
<div class="author">
<img
class="author-avatar"
src="{{ site.author.avatar }}"
alt="{{ site.author.username }}"
/>
<h2 class="author-name">{{ site.author.name }}</h2>
<p class="author-bio">{{ site.author.bio }}</p>
</div>