change how website is organized

This commit is contained in:
Parker TenBroeck 2026-01-22 11:48:01 -05:00
parent 58c56b0af7
commit 6c8e98dc98
38 changed files with 59 additions and 60 deletions

View file

@ -8,10 +8,11 @@
</p>
<p>
You can find <a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>,
<a href="{{ get_url(path='@/projects/_index.md') }}">Projects</a>,
<a href="{{ get_url(path='@/crafts/_index.md') }}">Crafts</a>,
<a href="{{ get_url(path='@/pictures/_index.md') }}">Pictures</a>, and
<a href="{{ get_url(path='tags') }}">Tags</a> up above on any page.
{# <a href="{{ get_url(path='@/projects/_index.md') }}">Projects</a>,
<a href="{{ get_url(path='@/crafts/_index.md') }}">Crafts</a>, #}
<a href="{{ get_url(path='@/pictures/_index.md') }}">Pictures</a>,
<a href="{{ get_url(path='tags') }}">Tags</a>, and
<a href="{{ get_url(path='category') }}">Categories</a> up above on any page.
</p>
<p>Please note that this page is currently under construction; not all content is finished.</p>
@ -22,12 +23,12 @@
<p>Heres a list of stuff I'd like you to checkout:</p>
<ul>
<li>{{ post::page_link(path="projects/automata.md") }}</li>
<li>{{ post::page_link(path="projects/rasterizer/index.md") }}</li>
<li>{{ post::page_link(path="projects/ansi.md") }}</li>
<li>{{ post::page_link(path="projects/generators.md") }}</li>
<li>{{ post::page_link(path="projects/fastexpr.md") }}</li>
<li>{{ post::page_link(path="projects/kernel/index.md") }}</li>
<li>{{ post::page_link(path="blog/projects/automata.md") }}</li>
<li>{{ post::page_link(path="blog/projects/rasterizer/index.md") }}</li>
<li>{{ post::page_link(path="blog/projects/ansi.md") }}</li>
<li>{{ post::page_link(path="blog/projects/generators.md") }}</li>
<li>{{ post::page_link(path="blog/projects/fastexpr.md") }}</li>
<li>{{ post::page_link(path="blog/projects/kernel/index.md") }}</li>
<li>{{ post::page_link(path="blog/website.md") }}</li>
</ul>

View file

@ -3,8 +3,9 @@
</div>
<nav>
<a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>
<a href="{{ get_url(path='@/projects/_index.md') }}">Projects</a>
<a href="{{ get_url(path='@/crafts/_index.md') }}">Crafts</a>
{# <a href="{{ get_url(path='@/projects/_index.md') }}">Projects</a>
<a href="{{ get_url(path='@/crafts/_index.md') }}">Crafts</a> #}
<a href="{{ get_url(path='@/pictures/_index.md') }}">Pictures</a>
<a href="{{ get_url(path='tags') }}">Tags</a>
<a href="{{ get_url(path='category') }}">Categories</a>
</nav>

View file

@ -1,2 +1,2 @@
{% import "macros/figures.html" as figures %}
{{ figures::image(src=src, caption=caption) }}
{{ figures::image(src=page.colocated_path ~ src, caption=caption) }}

View file

@ -28,7 +28,7 @@
{%- block main -%}
<h1>{{ taxonomy::prettify(term=term.name) }}</h1>
{# <h1>{{ taxonomy::prettify(term=term.name) }}</h1> #}
<div>
{%- for page in paginator.pages | default(value=term.pages) %}
{{ post::excerpt(page=page) }}