From 3cbf765345d99542d865caeb5747277b83704807 Mon Sep 17 00:00:00 2001 From: Spencer Brower <6729162+sbrow@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:29:11 -0400 Subject: [PATCH] refactor: Re-arranged page type enum. --- content.odin | 4 ++-- render.odin | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content.odin b/content.odin index b5e1ad9..1f0b802 100644 --- a/content.odin +++ b/content.odin @@ -8,9 +8,9 @@ import "core:os" import "core:strings" Page_Type :: enum { - Home, - Post, Standalone, + Post, + Home, } Page :: struct { diff --git a/render.odin b/render.odin index 20691b1..d8fb34c 100644 --- a/render.odin +++ b/render.odin @@ -1,7 +1,7 @@ #+feature dynamic-literals package main -import mustache "mustache" +import "mustache" import "core:fmt" import "core:os"