site/_includes/layouts/sneexy/notebook.njk
Ruben 0f20abe7c0
All checks were successful
/ build (push) Successful in 4m33s
update bases, fix windows on other pages
2025-10-19 00:58:10 -05:00

63 lines
No EOL
2.6 KiB
Text

---
title: notebook
layout: "layouts/base.njk"
permalink: "/notebook/"
---
{% set postslist = collections.post %}
<!-- notebook index -->
<article id="notebook" class="window">
<div class="header">
<titlebar-icon aria-hidden="true">
<icon-tabler article></icon-tabler>
</titlebar-icon>
<a href="#notebook">Notebook</a>
<window-controls aria-hidden="true">
<icon-tabler minimize></icon-tabler>
<icon-tabler maximize></icon-tabler>
<close-button aria-hidden="true">
<icon-tabler x></icon-tabler>
</close-button>
</window-controls>
</div>
<section data-pagefind-body>
<div id="search"></div>
<h1><a href="#notebook">Notebook</a> <a href="./rss.xml"><span class="icon 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="icon tabler--arrow-autofit-height"></span> test</summary>
{%- for knowledgebase in collections.knowledgebase %}
<div class="article-card">
<h2><a href="{{ knowledgebase.url }}">{{ knowledgebase.data.title }}</a></h2>
<p class="tags-holder">
{%- for tag in tags | filterTagList %}
{%- set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
<a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a>{%- if not loop.last %}, {% endif %}
{%- endfor %}
</p>
<p>{{ knowledgebase.data.description }}</p>
<a href="{{ knowledgebase.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>
</article>
<!-- pagefind -->
<script>
window.addEventListener('DOMContentLoaded', (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>