github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/docs/themes/hugo-geekdoc/layouts/404.html (about)

     1  <!DOCTYPE html>
     2  <html lang="{{ .Site.Language.Lang }}">
     3    <head>
     4      {{ partial "head/meta" . }}
     5      <title>{{ i18n "error_page_title" }}</title>
     6  
     7      {{ partial "head/favicons" . }}
     8      {{ partial "head/others" . }}
     9    </head>
    10  
    11    <body>
    12      {{ partial "svg-icon-symbols" . }}
    13  
    14  
    15      <div class="wrapper">
    16        <input type="checkbox" class="hidden" id="menu-header-control" />
    17  
    18        {{ partial "site-header" (dict "Root" . "MenuEnabled" false) }}
    19  
    20  
    21        <main class="gdoc-error flex-even">
    22          <div class="flex align-center justify-center">
    23            <div class="gdoc-error__icon">
    24              <svg class="gdoc-icon gdoc_cloud_off"><use xlink:href="#gdoc_cloud_off"></use></svg>
    25            </div>
    26            <div class="gdoc-error__message">
    27              <div class="gdoc-error__line gdoc-error__title">{{ i18n "error_message_title" }}</div>
    28              <div class="gdoc-error__line gdoc-error__code">{{ i18n "error_message_code" }}</div>
    29              <div class="gdoc-error__line gdoc-error__help">
    30                {{ i18n "error_message_text" .Site.BaseURL | safeHTML }}
    31              </div>
    32            </div>
    33          </div>
    34        </main>
    35  
    36        {{ partial "site-footer" . }}
    37  
    38      </div>
    39    </body>
    40  </html>