Files
boutique-fanny/templates/frontOffice/boutique/404.html
2019-05-26 15:57:49 +02:00

40 lines
920 B
HTML

{extends file="layout.tpl"}
{* Body Class *}
{block name="body-class"}page-404{/block}
{* Breadcrumb *}
{block name='no-return-functions' append}
{$breadcrumbs = [
['title' => {intl l="404"}, 'url'=>{url path="/404"}]
]}
{/block}
{block name="main-content"}
<div class="main">
<article class="col-main" role="main" aria-labelledby="main-label">
{ifhook rel="404.content"}
{hook name="404.content"}
{/ifhook}
{elsehook rel="404.content"}
<h1 id="main-label">
404
<span>{intl l="The page cannot be found"}</span>
</h1>
{/elsehook}
</article>
</div>
{/block}
{block name="stylesheet"}
{hook name="404.stylesheet"}
{/block}
{block name="after-javascript-include"}
{hook name="404.after-javascript-include"}
{/block}
{block name="javascript-initialization"}
{hook name="404.javascript-initialization"}
{/block}