site/_includes/layouts/notebook.njk
Ruben 87fa720865
All checks were successful
/ build (push) Successful in 1m26s
clean up, redo windows so it's not "invalid"
2025-06-03 00:05:15 -05:00

60 lines
No EOL
2.2 KiB
Text

---
title: notebook
layout: "layouts/base.njk"
permalink: "/notebook/"
---
{% set postslist = collections.post %}
<!-- notebook index -->
<div id="notebook" class="window">
<div class="header">
<div class="icon" aria-hidden="true">
<span class="tabler--article"></span>
</div>
<a href="#notebook">Notebook</a>
<div class="window-buttons" aria-hidden="true">
<span class="tabler--minimize"></span>
<span class="tabler--maximize"></span>
</div>
<div class="close-button" aria-hidden="true">
<span class="tabler--x"></span>
</div>
</div>
<section data-pagefind-body>
<div id="search"></div>
<h1><a href="#notebook">Notebook</a> <a href="./rss.xml"><span class="tabler--rss" style="transform: scale(1.5) translateY(.5rem);"></span></a></h1>
<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>
<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="/~sneexy">myself</a>.</p>
<span class="seperator"></span>
<details open class="notebook article-category">
<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>
<p class="tags-holder">
</p>
<p>{{ other.data.description }}</p>
<a href="{{ other.url }}" class="read">read more</a>
</div>
{%- endfor %}
<div class="article-card">
<h2><a>test</a></h2>
<p class="tags-holder"><a>tag</a> <a>tag-2</a> <a>tag-3</a></p>
<p>description</p>
<a class="read" href="./read">read more</a>
</div>
</details>
</section>
</div>
<!-- pagefind -->
<script>
window.addEventListener('DOMContentLoaded', (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>