The templates had to move from the root directory into a directory level with the server package because
Go does not allow the embedding directive to reference paths upwards (..)
Symbols in the main package can't be exported and there can only be one package per filesystem directory, so we can't load the templates from there and export them to the server package
The templates had to move from the root directory into a directory level with the server package because
..
)