Files
slide_life/lib/slide_life_web/components/layouts.ex

15 lines
448 B
Elixir
Raw Normal View History

2024-05-21 23:48:50 +02:00
defmodule SlideLifeWeb.Layouts do
2024-05-21 21:57:36 +02:00
@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
2024-05-21 23:48:50 +02:00
layout on both `use SlideLifeWeb, :controller` and
`use SlideLifeWeb, :live_view`.
2024-05-21 21:57:36 +02:00
"""
2024-05-21 23:48:50 +02:00
use SlideLifeWeb, :html
2024-05-21 21:57:36 +02:00
embed_templates "layouts/*"
end