version.go, footer.html: display version

Closes https://gitlab.com/commento/commento/issues/122
This commit is contained in:
Adhityaa Chandrasekar
2019-04-20 20:59:30 -04:00
parent 1d1cd46c2b
commit e46f9cf9e7
4 changed files with 10 additions and 0 deletions

View File

@@ -9,6 +9,11 @@ import (
"time"
)
func versionPrint() error {
logger.Infof("starting Commento %s", version)
return nil
}
func versionCheckStart() error {
go func() {
printedError := false