1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-16 21:34:25 +03:00
ifhub.club/application/frontend/skin/developer/actions/ActionError/index.tpl

26 lines
572 B
Smarty

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