1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub-skin.git synced 2024-06-17 07:30:48 +03:00
ifhub-skin/actions/ActionError/index.tpl

23 lines
557 B
Smarty

{**
* Страница вывода ошибок
*}
{extends 'layouts/layout.base.tpl'}
{block 'layout_options' append}
{$layoutShowSystemMessages = false}
{/block}
{block 'layout_page_title'}
{if $aMsgError[0].title}
{$aLang.common.error.error}: <span>{$aMsgError[0].title}</span>
{/if}
{/block}
{block 'layout_content'}
<p>{$aMsgError[0].msg}</p>
<p>
<a href="javascript:history.go(-1);">{$aLang.common.site_history_back}</a>,
<a href="{router page='/'}">{$aLang.common.site_go_main}</a>
</p>
{/block}