Files
link_shortener/lib/link_shortener_web/components/layouts.ex
T
2024-08-20 20:13:01 +03:00

15 lines
464 B
Elixir

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