aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/404.html
blob: c2f0c31194e91cb69cf10495801db9f1ac6f1f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<div id="content" class="bg-near-white pb2 pt5">
    <header class="tc ph5 lh-copy">
        <h1 class="f1 f-headline-l code dib orange">404</h1>
        <h2 class="tc f1-l fw1">Sorry, we can't find the page you are looking for.</h2>
    </header>

    <p class="fw1 i tc mt4 mt5-l f4 f3-l">Are you looking for one of these?</p>

    <div class="db tc ma3 f6">
        {{ range .Site.Menus.main }}
        <a class="dib link dim ph3 pv2 ba br1 ttu f5 ma1" href="{{ .URL | relLangURL }}" title="{{ .Title }}">
            {{ .Pre }} {{ .Name }}</a>
        {{ end }}
    </div>
</div>
{{ end }}