defmodule NolaWeb.NetworkController do use NolaWeb, :controller plug(NolaWeb.ContextPlug) def index(conn, %{"network" => network}) do conn |> assign(:title, network) |> render("index.html") end end