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"