From eac36ee64ff20271ac66d25ed7ebe267053072df Mon Sep 17 00:00:00 2001 From: Simon Kirsten <stsnkirs@stud.h-da.de> Date: Mon, 28 Oct 2019 19:11:17 +0100 Subject: [PATCH] Added additional info --- internal/website/website.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/website/website.go b/internal/website/website.go index 4e5fb85..eaabde3 100644 --- a/internal/website/website.go +++ b/internal/website/website.go @@ -6,6 +6,7 @@ import ( // website is the html source of the website. // It is possible to have this in a serperate .html file and include it at compile time but for simplicity and portability we just keep it here inline. +// No React, Vue, etc. or jQuery is used. // Also there are some Visual Studio Code plugins in development that should enable html syntax highlighting here. var website = []byte(` <!DOCTYPE html> @@ -277,7 +278,7 @@ var website = []byte(` // websiteHandleFunc just serves the website func websiteHandleFunc(w http.ResponseWriter, r *http.Request) { - // The "/" pattern (in main.go) matches everything that isnt handled by somebody else, so we need to check + // The "/" pattern (in main.go) matches everything that isn't handled by somebody else, so we need to check // that we're at the root here. if r.URL.Path != "/" { -- GitLab