Files
circle/lib/circle_web/components/layouts.ex
2025-08-05 00:44:17 +01:00

15 lines
436 B
Elixir

defmodule CircleWeb.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 CircleWeb, :controller` and
`use CircleWeb, :live_view`.
"""
use CircleWeb, :html
embed_templates "layouts/*"
end