1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-07 17:04:24 +03:00
ifhub.club/application/frontend/skin/developer/actions/ActionError/index.tpl
2014-10-18 13:07:45 +07:00

26 lines
538 B
Smarty

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