jackson
Version:
Jackson, the web application framework
22 lines (16 loc) • 381 B
HTML
<% extend 'layout.html' %>
<% = 'Error' %>
<% switch typeof : %>
<% when 'object': %>
<h1><%- @error.name %></h1>
<h2><%- @error.message %></h2>
<pre><%- @error.stack %></pre>
<% end %>
<% when 'string': %>
<h1>Error</h1>
<h2><%- @error %></h2>
<% end %>
<% end %>
<hr>
<h3>Request</h3>
<% include '_request.html', {, } %>