Implement error page template

This commit is contained in:
Olivier PEREZ 2015-01-06 23:21:10 +01:00
parent 7727ffde73
commit a4f3041a73

8
tpl/error.tpl Normal file
View File

@ -0,0 +1,8 @@
{extends file='page.tpl'}
{block name=main}
<div class="alert alert-warning">
<h2>{$error}</h2>
<p>{_('Back to the homepage of')} <a href="{$SERVER_URL}">{$APPLICATION_NAME}</a></p>
</div>
{/block}