defmodule NightsWeb.EventController do use NightsWeb, :controller def index(conn, _params) do render(conn, :index, page_title: "Welcome!") end end