From 610c141a4a4bceeace23ad2762f8f71cdc1f2a47 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Tue, 27 May 2025 09:11:27 +0200 Subject: [PATCH] Made github link conditional --- src/_data/projects.json | 8 ++++---- src/pages/home.liquid | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/_data/projects.json b/src/_data/projects.json index 5b166a4..6d0ae87 100644 --- a/src/_data/projects.json +++ b/src/_data/projects.json @@ -2,9 +2,9 @@ "projects": [ { "name": "Raytracer", - "text": "A raytracer written completely in C++ I made for a university assignment. It's not the most advanced, but I am proud of it (and the fact the entire thing was made in like 1.5 weeks)", + "text": "A raytracer written completely in C++ I made for a university assignment. It's not the most advanced, but I am proud of it (and the fact the entire thing was made in 9 days), Unfortunately, the university bars me from putting the source code online.", "photo": "/static/raytracer.webp", - "link": "https://github.com/KoenDR06/Raytracer" + "link": "" }, { "name": "Comedy TUI", @@ -14,9 +14,9 @@ }, { "name": "Mandelbrot", - "text": "A Mandelbrot renderer I made for a university course written in C#. It is multithreaded, has multiple color modes, and the ability to export and import renders as .mandel files, which is a file format specially created for this project.", + "text": "A Mandelbrot renderer I made for a university course written in C#. It is multithreaded, has multiple color modes, and the ability to export and import renders as .mandel files, which is a file format specially created for this project. Unfortunately, the university bars me from putting the source code online.", "photo": "/static/mandelbrot.jpg", - "link": "https://github.com/KoenDR06/UniMandelbrot" + "link": "" }, { "name": "AulaControl", diff --git a/src/pages/home.liquid b/src/pages/home.liquid index d4f4458..0abf66f 100644 --- a/src/pages/home.liquid +++ b/src/pages/home.liquid @@ -10,7 +10,7 @@ title: Koen de Ruiter
- + {% if p.link != "" %} {% endif %}

{{ p.name }}

{{ p.text }}