eesyphp/example/templates/fatal_error.tpl
Benjamin Renard 4f47dc056d Tpl: Add stuff to handle static files
* Move example application in example sub-directory
* Widely use App::get() instead of Config::get()
2023-02-12 00:30:36 +01:00

11 lines
447 B
Smarty

{extends file='empty.tpl'}
{block name="content"}
<h1 class="center">Oops ...</h1>
<p class="center">{t}A fatal error has occurred and it is preventing this application from working properly. Please try again later or contact support.{/t}</p>
<p class='fatal_error_msg'>{t 1=$fatal_error}Error: %1{/t}</p>
<div class="center"><a href="javascript:history.back()" class="btn btn-primary"><i class="fa fa-undo"></i> {t}Back{/t}</a></div>
{/block}