aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--projects.html37
-rw-r--r--projects/autograd.html4
-rw-r--r--projects/bubbl.html4
-rw-r--r--projects/chip8emu.html4
-rw-r--r--projects/msg.html4
-rw-r--r--projects/zuk-msm8996.html4
6 files changed, 54 insertions, 3 deletions
diff --git a/projects.html b/projects.html
index 1f78beb..fcf9f47 100644
--- a/projects.html
+++ b/projects.html
@@ -1,4 +1,35 @@
-<div class="p-16">
- <h1 class="text-5xl">PROJECTS</h1>
- <p class="text-xl">Here's a bunch of things I've done.</p>
+<div class="min-h-screen flex flex-col">
+
+ {{ include "navbar.html" }}
+
+ <div class="flex flex-grow flex-col">
+
+ <div class="p-16">
+ <h1 class="text-5xl">PROJECTS</h1>
+ <p class="text-xl">Here's a bunch of things I've done.</p>
+ </div>
+
+ <div class="px-16 flex flex-wrap gap-16 items-stretch justify-center">
+
+ {{ eachdo projects }}
+
+ <a href="#">
+ <div class="bg-pink-100 py-2 px-4 text-pink-900 hover:bg-zinc-900 hover:text-pink-300 max-w-128 hover:underline selection:bg-zinc-400">
+ <div class="flex gap-2 pt-2 items-center">
+ <p class="text-2xl font-semibold">{{ put name }}</p>
+ <p class="text-xl text-center text-wrap">{{ put description }}</p>
+ </div>
+
+ <div class="text-center text-sm border-t-2 mt-3 py-1">{{ put languages }}</div>
+ </div>
+ </a>
+
+ {{ endeachdo }}
+
+ </div>
+
+ </div>
+
+ {{ include "footer.html" }}
+
</div>
diff --git a/projects/autograd.html b/projects/autograd.html
new file mode 100644
index 0000000..8f89eb7
--- /dev/null
+++ b/projects/autograd.html
@@ -0,0 +1,4 @@
+name = Autograd
+description = An implementation of autograd / backpropagation.
+languages = Python
+---
diff --git a/projects/bubbl.html b/projects/bubbl.html
new file mode 100644
index 0000000..6112139
--- /dev/null
+++ b/projects/bubbl.html
@@ -0,0 +1,4 @@
+name = BUBBL
+description = An Operating System for The x86 Architecture.
+languages = C / C++ / ASM
+---
diff --git a/projects/chip8emu.html b/projects/chip8emu.html
new file mode 100644
index 0000000..6a03c71
--- /dev/null
+++ b/projects/chip8emu.html
@@ -0,0 +1,4 @@
+name = CHIP8Emu
+description = An Emulator/Interpreter for CHIP-8.
+languages = C++
+---
diff --git a/projects/msg.html b/projects/msg.html
new file mode 100644
index 0000000..1c691e3
--- /dev/null
+++ b/projects/msg.html
@@ -0,0 +1,4 @@
+name = MSG
+description = An incredibly opinionated, hackable, minimal Static Site Generator.
+languages = C
+---
diff --git a/projects/zuk-msm8996.html b/projects/zuk-msm8996.html
new file mode 100644
index 0000000..e6b2f27
--- /dev/null
+++ b/projects/zuk-msm8996.html
@@ -0,0 +1,4 @@
+name = ZUK MSM8996
+description = A port of Android 13 &amp; 14 to the Zuk Z2 PLUS.
+languages = AOSP / LineageOS
+---