sigh - convert everything to Liquid templates (instead of Pug) since it is first-class supported in Eleventy

This commit is contained in:
2026-03-23 21:46:35 -05:00
parent 75dc13f8da
commit c25e2ac380
42 changed files with 452 additions and 392 deletions

21
src/_includes/blog.liquid Normal file
View File

@@ -0,0 +1,21 @@
{% layout 'obsidian.liquid' %}
{% block content %}
<div class="container" id="top">
<div class="inner">
<section id="blog-header">
<h1>Garrett's Blog</h1>
<p class="button-links">
<a class="button" href="/blog">Home</a>
<a class="button" href="/blog/archive">Archive</a>
<a class="button" href="/blog/tags">Tags</a>
<a class="button" href="/blog/feeds">Feeds</a>
</p>
</section>
{% block blog_content %}
<div class="content-wrapper">{{ content }}</div>
{% endblock %}
</div>
</div>
{% endblock %}