404.html 372 B

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