forked from PrestaShop/hummingbird
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path410.tpl
More file actions
35 lines (30 loc) · 907 Bytes
/
410.tpl
File metadata and controls
35 lines (30 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{**
* 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}