d547ee6f8d
Using `mix phx.new music_library --database sqlite3 --binary-id --no-mailer`
11 lines
246 B
Elixir
11 lines
246 B
Elixir
defmodule MusicLibraryWeb.PageHTML do
|
|
@moduledoc """
|
|
This module contains pages rendered by PageController.
|
|
|
|
See the `page_html` directory for all templates available.
|
|
"""
|
|
use MusicLibraryWeb, :html
|
|
|
|
embed_templates "page_html/*"
|
|
end
|