Packages

A simplifier for Plug applications. Template rendering, redirecting, error codes

Current section

Files

Jump to
ex_web templates errors index.html.eex
Raw

templates/errors/index.html.eex

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Error: <%= assigns.status %></title>
</head>
<body>
<h1><%= assigns.message %></h1>
<%= if assigns[:description] do %>
<p>
<%= assigns.description %>
</p>
<% end %>
</body>
</html>