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

23 lines
557 B
Smarty
Raw Normal View History

2017-01-08 13:05:51 +02:00
{**
* Страница вывода ошибок
*}
{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}