20cd1bb579
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
167 B
Elixir
10 lines
167 B
Elixir
defmodule EventosWeb.PageController do
|
|
use EventosWeb, :controller
|
|
|
|
plug :put_layout, false
|
|
|
|
def index(conn, _params) do
|
|
render conn, "index.html"
|
|
end
|
|
end
|