* Added scratchpad dir * Installed Alpine * [WIP] began integrating Tailwind and accompanying theme * [WIP] Set up basic views for sources * Adds new UI to media profiles page * Removes unneeded view
9 lines
217 B
Elixir
9 lines
217 B
Elixir
defmodule PinchflatWeb.PageController do
|
|
use PinchflatWeb, :controller
|
|
|
|
def home(conn, _params) do
|
|
# The home page is often custom made,
|
|
# so skip the default app layout.
|
|
render(conn, :home)
|
|
end
|
|
end
|