summaryrefslogtreecommitdiff
path: root/source/know/index.md
diff options
context:
space:
mode:
authorPrefetch2022-10-14 23:25:28 +0200
committerPrefetch2022-10-14 23:25:28 +0200
commit6ce0bb9a8f9fd7d169cbb414a9537d68c5290aae (patch)
treea0abb6b22f77c0e84ed38277d14662412ce14f39 /source/know/index.md
Initial commit after migration from Hugo
Diffstat (limited to 'source/know/index.md')
-rw-r--r--source/know/index.md48
1 files changed, 48 insertions, 0 deletions
diff --git a/source/know/index.md b/source/know/index.md
new file mode 100644
index 0000000..f1b2c51
--- /dev/null
+++ b/source/know/index.md
@@ -0,0 +1,48 @@
+---
+title: "Knowledge base"
+date: 2021-02-22
+layout: "default"
+---
+
+# Knowledge base
+
+Welcome to my knowledge base!
+
+Over the years, I've learned a lot of physics, mathematics, and computing.
+These are vast, difficult subjects, and I've spent many hours of my life
+trying to make sense of obscure, poorly explained concepts.
+To help me remember what I learn, I write notes in LaTeX.
+
+This knowledge base is based on my notes, and
+is freely available to anyone who needs it.
+I hope it helps you in your studies or work.
+
+Keep in mind that I'm only human, so there are probably mistakes here.
+I take no responsibility for any injuries.
+If you're doing something important,
+you should check things yourself!
+
+{% assign concepts = site.pages
+ | where_exp: "item", "item.layout == 'concept'"
+%}
+{% assign categories = site.pages
+ | where_exp: "item", "item.layout == 'category'"
+%}
+
+There are currently
+<a href="/know/concept/">{{ concepts.size }} articles</a>
+in this knowledge base, in
+<a href="/know/category/">{{ categories.size }} categories</a>.
+
+<p>Most recent articles:
+<ol>
+{% assign newest = concepts
+ | sort: "date"
+ | reverse
+ | slice: 0, 10
+%}
+{% for page in newest %}
+ <li><a href="{{ page.url }}">{{ page.title }}</a></li>
+{% endfor %}
+</ol>
+</p>