Packages

Ezmodex is a lightweight experimental Elixir microframework built on top of Plug

Current section

Files

Jump to
ezmodex lib ezmodex not_found.ex
Raw

lib/ezmodex/not_found.ex

defmodule Ezmodex.NotFound do
use Ezmodex.Page, status: 404
use Ezmodex.Elements
view do
html5 [
text("Not Found")
]
end
end