Files
2026-04-09 18:31:51 +02:00

36 lines
907 B
Smarty

{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
{extends file='page.tpl'}
{block name='breadcrumb'}{/block}
{block name='container_class'}container container--limited-md text-center{/block}
{block name='page_header_container'}
{block name='page_title'}
<div class="page-header mb-2">
<h1 class="display-1">{$page.title}</h1>
</div>
{/block}
{/block}
{capture assign="errorContent"}
<h1 class="h4">{$page.title}</h1>
<p>
{l
s='If this is a recurring problem, please [1]contact us[/1].'
d='Shop.Theme.Catalog'
sprintf=[
'[1]' => '<a href="'|cat:{$urls.pages.contact|escape:'htmlall'}|cat:'">',
'[/1]' => '</a>'
]
}
</p>
{/capture}
{block name='page_content_container'}
{include file='errors/not-found.tpl' errorContent=$errorContent}
{/block}