From 33b7e865143132a6d14128e965ba985fe8cfb3fd Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Tue, 13 Feb 2024 10:04:21 +0100 Subject: [PATCH] more --- content/misc.md | 25 +++++++++++++++++++++++++ sass/style.scss | 5 +++-- templates/base.html | 7 ++++++- templates/blog-page.html | 2 +- 4 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 content/misc.md diff --git a/content/misc.md b/content/misc.md new file mode 100644 index 0000000..75ffe1a --- /dev/null +++ b/content/misc.md @@ -0,0 +1,25 @@ ++++ +title = "Miscellaneous Stuff" +template_page = "page.html" ++++ + +This page lists miscellaneous stuff I found or like, such as links, opinions, etc. + +## External Links + +### Rust +- [Writing an OS in Rust](https://os.phil-opp.com/) + +### Software Philosophy + +- [Why Open Source Misses the Point of Free Software](https://www.gnu.org/philosophy/open-source-misses-the-point.en.html) +- [Copyleft: Pragmatic Idealism](https://www.gnu.org/philosophy/pragmatic.en.html) +- [How To Become A Hacker](http://www.catb.org/~esr/faqs/hacker-howto.html) + +### Interesting projects + +#### Games +- [DDraceNetwork](https://github.com/ddnet/ddnet) + +#### Rendering / GPU +- [ZLUDA](https://github.com/vosen/ZLUDA) diff --git a/sass/style.scss b/sass/style.scss index 6ee5710..f75ee72 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -205,9 +205,10 @@ ul { margin-bottom: 10px; } -h1,h2,h3 { - border-bottom: 4px $color solid; +h1,h2 { + border-bottom: 2px $color solid; border-bottom-color: #FFAA00; + margin-bottom: 1rem; } table { diff --git a/templates/base.html b/templates/base.html index 8a032e9..e7083bd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -39,6 +39,11 @@ >Projects +
  • + Misc +
  • GitHub -
    +

    Copyright © 2019-2024 Edgar Luque

    This page is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License.

    diff --git a/templates/blog-page.html b/templates/blog-page.html index 9ada03c..60ae33b 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -20,7 +20,7 @@

    {% for category in page.taxonomies["categories"] %} -{{ category }} +{{ category }} {% endfor %}

    {{ page.content | safe }}