chiya/lib/chiya_web/controllers/page_html.ex
2023-04-10 19:18:27 +02:00

8 lines
204 B
Elixir

defmodule ChiyaWeb.PageHTML do
use ChiyaWeb, :html_public
embed_templates "page_html/*"
def tag_list([]), do: "No Tags"
def tag_list(tags), do: Enum.map_join(tags, ", ", fn t -> t.name end)
end