2025-04-21 09:51:22 -05:00
---
title: notebook
layout: "layouts/base.njk"
2025-05-12 20:52:49 -05:00
permalink: "/notebook/"
2025-04-21 09:51:22 -05:00
---
2025-05-12 20:52:49 -05:00
{% set postslist = collections.post %}
2025-04-21 09:51:22 -05:00
<!-- notebook index -->
<details open id="notebook" class="window">
<summary>
<div aria-hidden="true">
<span class="tabler--article"></span>
</div>
<a href="#notebook">Notebook</a>
<div aria-hidden="true">
<span class="tabler--minimize"></span>
<span class="tabler--maximize"></span>
</div>
<div aria-hidden="true">
<span class="tabler--x"></span>
</div>
</summary>
2025-05-12 20:52:49 -05:00
<main data-pagefind-body>
<div id="search"></div>
2025-04-21 09:51:22 -05:00
<h1><a href="#notebook">Notebook</a> <a href="./rss.xml"><span class="tabler--rss" style="transform: scale(1.5) translateY(.5rem);"></span></a></h1>
2025-05-29 01:02:09 -05:00
<h2><b>NOTE:</b> This page is still heavily a work in progress, nothing on here is functional or what is meant to be.</h2>
2025-04-21 09:51:22 -05:00
<p>A public facing journal for myself, as probably the best way to put it. A blog-ish, writeup-ish, rant-ish place to dump personal thoughts and such into for <a href="/me">myself</a>.</p>
2025-04-28 19:31:29 -05:00
<span class="seperator"></span>
<details open class="notebook article-category">
2025-05-12 20:52:49 -05:00
<summary><span class="tabler--arrow-autofit-height"></span> test</summary>
{%- for other in collections.other %}
<div class="article-card">
<h2><a href="{{ other.url }}">{{ other.data.title }}</a></h2>
2025-05-25 21:36:28 -05:00
<p class="tags-holder">
</p>
2025-05-12 20:52:49 -05:00
<p>{{ other.data.description }}</p>
<a href="{{ other.url }}" class="read">read more</a>
</div>
{%- endfor %}
2025-04-28 19:31:29 -05:00
<div class="article-card">
2025-05-12 20:52:49 -05:00
<h2><a>test</a></h2>
<p class="tags-holder"><a>tag</a> <a>tag-2</a> <a>tag-3</a></p>
2025-04-28 19:31:29 -05:00
<p>description</p>
2025-05-12 20:52:49 -05:00
<a class="read" href="./read">read more</a>
2025-04-28 19:31:29 -05:00
</div>
</details>
2025-05-12 20:52:49 -05:00
</main>
</details>
<!-- pagefind -->
<script>
window.addEventListener('DOMContentLoaded', (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>