Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. plug :put_layout_formats, ["html", "rss"]
  2. plug :put_layout, ...
  3.  
  4. render(conn, “index.html”, layout: {MyApp.LayoutView, “admin.html”})
  5.  
  6. conn
  7. |> put_layout({AdminView, "admin.html"})
  8. |> render :index
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement