Hayden Hargreaves 7af441f975 (INIT): Project initialized!
Finally, its starting!
2025-05-26 20:30:38 -07:00

15 lines
436 B
Elixir

defmodule PotionWeb.Layouts do
@moduledoc """
This module holds different layouts used by your application.
See the `layouts` directory for all templates available.
The "root" layout is a skeleton rendered as part of the
application router. The "app" layout is set as the default
layout on both `use PotionWeb, :controller` and
`use PotionWeb, :live_view`.
"""
use PotionWeb, :html
embed_templates "layouts/*"
end