Packages

This is a CMS written in Elixir. Aims to be the great open-source ecommerce and/or startup solution for those who are searching for a performance and stability on top of modern technologies like React and Elixir.

Current section

Files

Jump to
lyn web views error_view.ex
Raw

web/views/error_view.ex

defmodule Lyn.ErrorView do
use Lyn.Web, :view
def render("404.html", _assigns) do
render("not_found.html", %{})
end
def render("500.html", _assigns) do
render("server_error.html", %{})
end
# In case no render clause matches or no
# template is found, let's render it as 500
def template_not_found(_template, assigns) do
render "500.html", assigns
end
end