You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB

10 years ago
  1. <!DOCTYPE html>
  2. <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
  3. <head>
  4. {{ partial "head.html" . }}
  5. </head>
  6. <body>
  7. {{ partial "nav.html" . }}
  8. <section id="wrapper" class="home">
  9. <article class="post">
  10. <header>
  11. <h1>404 - page not found</h1>
  12. <h3>The page you're looking for doesn't seem to exist.</h3>
  13. </header>
  14. <ul id="post-list" class="archive readmore">
  15. <h3>Read more</h3>
  16. {{ range first 10 .Site.Pages }}
  17. {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
  18. {{ if ne $url "about/" }}
  19. <li>
  20. <a href="{{ .Permalink }}">{{ .Title }}<aside class="dates">{{ .Date.Format "Jan 2" }}</aside></a>
  21. </li>
  22. {{ end }}
  23. {{ end }}
  24. </ul>
  25. </article>
  26. {{ partial "footer.html" . }}
  27. </section>
  28. </body>
  29. </html>