sloanelybutsurely.com/lib/web/controllers/blog_html.ex
2025-04-12 13:04:57 -04:00

11 lines
252 B
Elixir

defmodule Web.BlogHTML do
use Web, :html
embed_templates "blog_html/*"
def blog_path(%Schema.Post{} = blog) do
if date = Core.Posts.publish_date(blog) do
~p"/blog/#{date.year}/#{date.month}/#{date.day}/#{blog.slug}"
end
end
end