defmodule AppWeb.HelloHTML do use AppWeb, :html embed_templates "hello_html/*" def index(assigns) do ~H""" Hello! """ end end