M content/felu/_index.md => content/felu/_index.md +1 -1
@@ 9,7 9,7 @@ template = "project.html"
[extra]
id = "felu"
-status = "active"
+status = "inactive"
git = "https://git.src.quest/~liljamo/felu"
docs = "https://man.src.quest/~liljamo/felu/"
M content/laurelin/_index.md => content/laurelin/_index.md +0 -2
@@ 9,8 9,6 @@ template = "project.html"
[extra]
id = "laurelin"
-status = "unknown"
-
git = "https://git.src.quest/~liljamo/deck-builder"
+++
M content/tixe/_index.md => content/tixe/_index.md +1 -1
@@ 9,7 9,7 @@ template = "project.html"
[extra]
id = "tixe"
-status = "active"
+status = "inactive"
git = "https://git.src.quest/~liljamo/tixe"
+++
M css/style.css => css/style.css +0 -49
@@ 8,55 8,6 @@
--font-serif: DejaVu, serif;
--font-mono: DejaVu, monospace;
- --color-*: initial;
- --color-amber-50: #fffbeb;
- --color-amber-100: #fef3c7;
- --color-amber-200: #fde68a;
- --color-amber-300: #fcd34d;
- --color-amber-400: #fbbf24;
- --color-amber-500: #f59e0b;
- --color-amber-600: #d97706;
- --color-amber-700: #b45309;
- --color-amber-800: #92400e;
- --color-amber-900: #78350f;
- --color-amber-950: #451a03;
-
- --color-emerald-50: #ecfdf5;
- --color-emerald-100: #d1fae5;
- --color-emerald-200: #a7f3d0;
- --color-emerald-300: #6ee7b7;
- --color-emerald-400: #34d399;
- --color-emerald-500: #10b981;
- --color-emerald-600: #059669;
- --color-emerald-700: #047857;
- --color-emerald-800: #065f46;
- --color-emerald-900: #064e3b;
- --color-emerald-950: #022c22;
-
- --color-orange-50: #fff7ed;
- --color-orange-100: #ffedd5;
- --color-orange-200: #fed7aa;
- --color-orange-300: #fdba74;
- --color-orange-400: #fb923c;
- --color-orange-500: #f97316;
- --color-orange-600: #ea580c;
- --color-orange-700: #c2410c;
- --color-orange-800: #9a3412;
- --color-orange-900: #7c2d12;
- --color-orange-950: #431407;
-
- --color-sky-50: #f0f9ff;
- --color-sky-100: #e0f2fe;
- --color-sky-200: #bae6fd;
- --color-sky-300: #7dd3fc;
- --color-sky-400: #38bdf8;
- --color-sky-500: #0ea5e9;
- --color-sky-600: #0284c7;
- --color-sky-700: #0369a1;
- --color-sky-800: #075985;
- --color-sky-900: #0c4a6e;
- --color-sky-950: #082f49;
-
--color-text-50: hsl(200, 60%, 95%);
--color-text-100: hsl(199, 61%, 90%);
--color-text-200: hsl(200, 61%, 80%);
M templates/project.html => templates/project.html +7 -0
@@ 7,6 7,13 @@
<div class="flex flex-col gap-4 items-center">
<div class="flex flex-col gap-1 items-center">
<p class="font-bold text-xl lg:text-2xl">{{ section.title }}</p>
+ {% if section.extra.status and section.extra.status == "active" %}
+ <p class="text-green-400 font-semibold">active</p>
+ {% elif section.extra.status and section.extra.status == "inactive" %}
+ <p class="text-red-400 font-semibold">inactive</p>
+ {% else %}
+ <p class="text-amber-400 font-semibold">unknown</p>
+ {% endif %}
{% if section.extra.external_link %}
<p class="lg:text-lg">See it in action: <a data-umami-event="project-{{ section.extra.id }}-external" class="hover:underline italic font-semibold" rel="noopener" target="_blank" href={{ section.extra.external_link }}>
{{ section.extra.external_link_visual }}