This commit is contained in:
2025-08-05 00:44:17 +01:00
commit 7825596c94
45 changed files with 2588 additions and 0 deletions

View File

@ -0,0 +1,14 @@
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