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