diff options
Diffstat (limited to '')
| -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"}, } |