diff options
| author | Mikkel Thestrup <mikkel_thestrup@mithe.dk> | 2025-12-07 02:32:30 +0100 |
|---|---|---|
| committer | Mikkel Thestrup <mikkel_thestrup@mithe.dk> | 2025-12-07 02:32:30 +0100 |
| commit | 67c0494af3863887f3e2b6f6930fdace571606ad (patch) | |
| tree | c87121ac5e75756313fc33ccd8f59c307cf5eb5e /internal/models.go | |
| parent | d243b30606673baec988c5cd0a31e450f2794ca4 (diff) | |
| download | web-portfolio-master.tar.gz web-portfolio-master.zip | |
Diffstat (limited to 'internal/models.go')
| -rw-r--r-- | internal/models.go | 9 |
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"}, } |