add links

This commit is contained in:
mtgmonkey
2025-08-02 07:48:01 -04:00
parent 3b7b378d30
commit c6714dfec6
6 changed files with 25 additions and 1 deletions

View File

@@ -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

14
content/links.md Normal file
View File

@@ -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 |

1
public/styles.css Normal file
View File

@@ -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}

View File

@@ -7,6 +7,9 @@
</head>
<body>
<section class="section">
<div class="header">
<h2><a href="https://blog.mtgmonkey.net">Andromeda's Blog</a></h2>
</div>
<div class="container">
{% block content %} {% endblock content %}
</div>

View File

@@ -5,4 +5,5 @@
This is Andromeda's blog.
</h1>
<p><a href="{{ get_url(path='@/daily/_index.md') }}">Daily Posts</a></p>
<p><a href="{{ get_url(path='@/links.md') }}">Links</a></p>
{% endblock content %}

5
templates/links.html Normal file
View File

@@ -0,0 +1,5 @@
{% extends "base.html" %}
{% block content %}
{{ page.content | safe }}
{% endblock content %}