New pages for Info and Covid-19.

This commit is contained in:
codevictory
2021-04-22 22:04:11 +03:00
parent 4fb333e6d0
commit 36bf759c56
5 changed files with 66 additions and 2 deletions

View File

@@ -4,4 +4,12 @@ defmodule RunosaariWeb.PageController do
def index(conn, _params) do
render(conn, "index.html")
end
def info(conn, _params) do
render(conn, "info.html")
end
def covid19(conn, _params) do
render(conn, "covid19.html")
end
end