add welcome

This commit is contained in:
Stephen
2020-02-10 17:41:17 -08:00
parent 926f230007
commit 85b76f1b9f
5 changed files with 48 additions and 0 deletions

BIN
Public/media/gif.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

BIN
Public/media/gif2.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 466 KiB

BIN
Public/media/song.mp3 Executable file

Binary file not shown.

45
Resources/Views/welcome.leaf Executable file

File diff suppressed because one or more lines are too long

View File

@@ -14,4 +14,7 @@ public func routes(_ router: Router) throws {
router.get("404") { request in router.get("404") { request in
return try request.view().render("404") return try request.view().render("404")
} }
router.get("welcome") { request in
return try request.view().render("welcome")
}
} }