blob: fbb6c6e68a5dcf731cd4b4e7237a976a2d3e7055 (
plain)
1
2
3
4
5
6
7
8
9
10
|
defmodule NullaWeb.PageHTML do
@moduledoc """
This module contains pages rendered by PageController.
See the `page_html` directory for all templates available.
"""
use NullaWeb, :html
embed_templates "page_html/*"
end
|