404.html 461 B

1234567891011121314151617
  1. {{ define "header" }}
  2. <link rel="stylesheet" href="/assets/css/404.css">
  3. {{ end }}
  4. {{ define "navbar" }}
  5. {{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" false) }}
  6. {{ end }}
  7. {{ define "content" }}
  8. <div class="notFound">
  9. <img src="/assets/images/404.png" alt="">
  10. <div class="message">
  11. <h1>404</h1>
  12. <h4>The page you are looking for is not there yet.</h4>
  13. </div>
  14. </div>
  15. {{ end }}