summaryrefslogtreecommitdiff
path: root/internal/models.go
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-12-07 02:32:30 +0100
committerMikkel Thestrup <mikkel_thestrup@mithe.dk>2025-12-07 02:32:30 +0100
commit67c0494af3863887f3e2b6f6930fdace571606ad (patch)
treec87121ac5e75756313fc33ccd8f59c307cf5eb5e /internal/models.go
parentd243b30606673baec988c5cd0a31e450f2794ca4 (diff)
downloadweb-portfolio-67c0494af3863887f3e2b6f6930fdace571606ad.tar.gz
web-portfolio-67c0494af3863887f3e2b6f6930fdace571606ad.zip
Fixed formating. Always max 80 chars a lineHEADmaster
Diffstat (limited to '')
-rw-r--r--internal/models.go9
1 files changed, 7 insertions, 2 deletions
diff --git a/internal/models.go b/internal/models.go
index 0ad4cfc..4c8b4e0 100644
--- a/internal/models.go
+++ b/internal/models.go
@@ -9,12 +9,17 @@ const (
PageContact = "contact"
)
-var ValidPages = []string{PageHome, PageProjects, PageResume, PageContact}
+var ValidPages = []string{
+ PageHome,
+ PageProjects,
+ PageResume,
+ PageContact,
+}
var PageSections = map[string][]string{
PageHome: {"intro", "about"},
PageProjects: {"intro", "kal"},
- PageResume: {"intro", "BSc in Computer Science"},
+ PageResume: {"intro", "BSc Comp. Sci."},
PageContact: {"contact"},
}