Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Last active August 22, 2017 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/7248726f39f2ecfd3ad4eecdb10f96dd to your computer and use it in GitHub Desktop.
Save shankardevy/7248726f39f2ecfd3ad4eecdb10f96dd to your computer and use it in GitHub Desktop.
defmodule MangoWeb.Plugs.AdminLayout do
import Phoenix.Controller, only: [put_layout: 2]
def init(_opts), do: nil
def call(conn, _) do
conn
|> put_layout({MangoWeb.LayoutView, "admin_app.html"})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment