initial commit

This commit is contained in:
benbot 2023-10-24 23:23:57 -04:00
commit 6a258db47f
923 changed files with 5334 additions and 0 deletions

View file

@ -0,0 +1,9 @@
defmodule EzcontainerRailwayWeb.PageController do
use EzcontainerRailwayWeb, :controller
def home(conn, _params) do
# The home page is often custom made,
# so skip the default app layout.
render(conn, :home, layout: false)
end
end