404.html 1.2 KB

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