Welcome to mirror list, hosted at ThFree Co, Russian Federation.

404.html « layouts - github.com/marketempower/axiom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c7b1f8158d5333d0a41f272692ac382d3e95f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
<div class="default-single">
  <div class="ax-content ax-l-o">
    <div class="ax-l-i{{ printf " %s" (.Param "maxWidthContent" | default "max-w-680") }}">
      <h1 class="page-title font-content-title font-normal leading-tight tracking-default text-40">{{ (T "e404Title" .) }}</h1>

      <article class="cdata mt-8">
        {{- $homeLink := printf `<a href="/">%s</a>` (T "home" .) }}
        <p>{{ (T "e404Msg" (dict "dot" . "homeLink" $homeLink)) | safeHTML }}</p>
      </article>
    </div>
  </div>
</div>
{{ end }}