2024-06-01 17:55:26 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Notes
|
2024-06-19 07:19:44 +02:00
|
|
|
excerpt:
|
|
|
|
You have discovered my notes listing, where I ramble about random subjects for
|
|
|
|
future me, so I don't have to rediscover the things again. I tend to access
|
|
|
|
these with direct link, but for your benefit, they are also listed here. It is
|
|
|
|
not without realm of possibility for you to be reading this page already.
|
2024-06-01 17:55:26 +02:00
|
|
|
permalink: /n/index.html
|
|
|
|
redirect_from: /n/n.html
|
|
|
|
navigation: true
|
|
|
|
lang: en
|
|
|
|
sitemap: true
|
|
|
|
robots: noai
|
|
|
|
---
|
|
|
|
|
|
|
|
<h1>Notes</h1>
|
|
|
|
|
|
|
|
<p>
|
2024-06-14 05:51:26 +02:00
|
|
|
<em>{{ page.excerpt }}</em>
|
2024-06-01 17:55:26 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2024-06-05 10:22:33 +02:00
|
|
|
<small
|
|
|
|
><em
|
|
|
|
>I won't comment on whether there are secret messy unlisted notes lying
|
|
|
|
around.</em
|
|
|
|
></small
|
2024-06-01 17:55:26 +02:00
|
|
|
>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<!-- Make a variable containing pages under n/ -->
|
|
|
|
<!-- For loop to go through the contents of the pages -->
|
|
|
|
<!-- If the page is on the sitemap, I want to publish it here -->
|
2024-06-05 10:22:33 +02:00
|
|
|
{% assign notes = site.pages | where_exp: "page", "page.path contains 'n/'" %}
|
|
|
|
{% for note in notes %} {% if note.sitemap == true %}
|
2024-06-08 08:58:19 +02:00
|
|
|
<h2><a href="{{ note.url }}">{{note.title}}</a></h2>
|
2024-06-01 17:55:26 +02:00
|
|
|
<p>
|
2024-06-08 08:58:19 +02:00
|
|
|
<span class="monospaced">{{ note.url | split: ".html" }}</span> - {{
|
|
|
|
note.excerpt | strip_html }}
|
2024-06-01 17:55:26 +02:00
|
|
|
</p>
|
2024-06-05 10:22:33 +02:00
|
|
|
{% endif %} {% endfor %}
|