hydra/src/root/error.tt

15 lines
341 B
Plaintext
Raw Normal View History

[% WRAPPER layout.tt title="Error" %]
2008-11-13 14:54:50 +00:00
[% USE HTML %]
<div class="page-header"><h1>[% IF httpStatus %][% httpStatus %][% ELSE %]Error[% END %]</h1></div>
<p>I'm very sorry, but the following error(s) occurred:</p>
<ul>
[% FOREACH error IN errors %]
<li><div class="error-msg">[% HTML.escape(error) %]</div></li>
[% END %]
</ul>
[% END %]