From c6714dfec6a584a0d4c9cf36b686d16b4009ea81 Mon Sep 17 00:00:00 2001 From: mtgmonkey Date: Sat, 2 Aug 2025 07:48:01 -0400 Subject: [PATCH] add links --- content/daily/2025-08-01.md | 2 +- content/links.md | 14 ++++++++++++++ public/styles.css | 1 + templates/base.html | 3 +++ templates/index.html | 1 + templates/links.html | 5 +++++ 6 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 content/links.md create mode 100644 public/styles.css create mode 100644 templates/links.html diff --git a/content/daily/2025-08-01.md b/content/daily/2025-08-01.md index 96a9c2d..ba71846 100644 --- a/content/daily/2025-08-01.md +++ b/content/daily/2025-08-01.md @@ -15,7 +15,7 @@ I'm also packing. This is a good time for me to trim down on needless belongings ## Programming -As always, I have a number of programming projects going on at the moment. I just completed [Rust Elaborator](https://git.mtgmonkey.net/Andromeda/rust-elaborator/), a custom tool created at the request of my step-mother. I faced a number of challenges with that project, the most prominent being that of operating system - she uses Windows, an OS I don't understand and don't have the infrastructure to run. As such, the [Windows exe](https://git.mtgmonkey.net/Andromeda/rust-elaborator/rust_elaborator.exe) isn't, to my chagrine, built with Nix. I instead set up a Windows 11 virtual machine with [Quickemu](https://github.com/quickemu-project/quickemu), downloaded [Rustup](https://www.rust-lang.org/tools/install), and compiled it the old-fashioned way. +As always, I have a number of programming projects going on at the moment. I just completed [Rust Elaborator](https://git.mtgmonkey.net/Andromeda/rust-elaborator/), a custom tool created at the request of my step-mother. I faced a number of challenges with that project, the most prominent being that of operating system - she uses Windows, an OS I don't understand and don't have the infrastructure to run. As such, the [Windows exe](https://git.mtgmonkey.net/Andromeda/rust-elaborator/src/commit/533ec341eabf3d28dcd4213ff883913cd4dad28c/rust-elaborator.exe) isn't, to my chagrine, built with Nix. I instead set up a Windows 11 virtual machine with [Quickemu](https://github.com/quickemu-project/quickemu), downloaded [Rustup](https://www.rust-lang.org/tools/install), and compiled it the old-fashioned way. Thank you for reading this post! I hope you have a wonderful rest of your day diff --git a/content/links.md b/content/links.md new file mode 100644 index 0000000..1006285 --- /dev/null +++ b/content/links.md @@ -0,0 +1,14 @@ ++++ +title = "Links" +template = "links.html" ++++ + +## Services hosted on mtgmonkey.net + +| | | +|-|-| +| [blog.mtgmonkey.net](https://blog.mtgmonkey.net) | this blog | +| [translate.mtgmonkey.net](https://translate.mtgmonkey.net) | translation service | +| [mtgmonkey.net](https;//mtgmonkey.net) | hobby website | +| [git.mtgmonkey.net](https://git.mtgmonkey.net) | git repos | +| [math.mtgmonkey.net](https://math.mtgmonkey.net) | riemann sum visualizer | diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..51e5d13 --- /dev/null +++ b/public/styles.css @@ -0,0 +1 @@ +body{background-color:#eeeee4;color:#452a21;line-height:1.6;font-size:19px;width:750px;margin:auto;margin-top:100px}ul{list-style-type:none}a{color:#1a7fad}code,blockquote{margin:0;padding:0}pre{margin:0;padding:4px;background-color:#fae8b6;white-space:pre-wrap} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 045d1b5..ef8d506 100644 --- a/templates/base.html +++ b/templates/base.html @@ -7,6 +7,9 @@
+
{% block content %} {% endblock content %}
diff --git a/templates/index.html b/templates/index.html index 1c2bb5f..1de9d0f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,4 +5,5 @@ This is Andromeda's blog.

Daily Posts

+

Links

{% endblock content %} diff --git a/templates/links.html b/templates/links.html new file mode 100644 index 0000000..8226656 --- /dev/null +++ b/templates/links.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} +{{ page.content | safe }} +{% endblock content %}