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

404.html « layouts - github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46c5d637227638e1f4664fca9f9d8b545f05c7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
<article class="container p-centered text-center mt-space">
  <header>
    <img src="{{ "images/lost.png" | absURL }}">
  </header>
  <section class="my-gap">
    <h2>{{ .Site.Params.title404 | default "404 - Page not found" }}</h2>
    <h3 class="text-gray text-italic">{{ .Site.Params.subtitle404 | default "The content you're looking for doesn't seem to exist." }}</h3>
  </section>
  <footer>
    <a class="btn btn-action btn-accent shadow s-circle" href='{{ .Site.BaseURL }}'><i class="fas fa-home"></i></a>
  </footer>
</article>
{{ end }}