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
538 B
Smarty
Raw Normal View History

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