I'm using Elixir in Phoenix framework.We know when we call an action in controller, the framework render a full view that includes footer, inner view ( main content) and header. How to load and render just a view without header, footer view ?
Example : localhost:4000/posts/new -> We will have header, form and footer
localhost:4000/post/1 -> We just show content of post #1 without header and footer view.
Thanks,