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

404.html « layouts - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee5ff43aa3dc2dc02af00717aeccba1c5edda203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang='{{ .Site.LanguageCode }}'>
  {{- partial "head.html" . -}}
  <body class="bg-gradient flex flex-col min-h-screen">
    {{- partial "header.html" . -}}
    <main class="flex-1 mt-12 max-w-3xl mt-32 mx-auto text-gray-700 w-full">
      <article class="article">
        <div class="intro">
          <h1>Page not found</h1>
          <p>Error 404</p>
        </div>
      </article>
    </main>
    {{- partial "footer.html" . -}}
  </body>
</html>