404.html 633 B

123456789101112131415161718192021222324
  1. {{ partial "header.html" . }}
  2. {{ partial "navbar.html" . }}
  3. <div class="container">
  4. <h1>Page not found</h1>
  5. <p>Maybe you were looking for one of these?</p>
  6. <h2>Recent News</h2>
  7. {{ range last 20 (where .Data.Pages "Section" "=" "blog") }}
  8. <ul>
  9. <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
  10. </ul>
  11. {{ end }}
  12. <h2>Recent Publications</h2>
  13. {{ range last 20 (where .Data.Pages "Section" "=" "publications") }}
  14. <ul>
  15. <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
  16. </ul>
  17. {{ end }}
  18. {{ partial "footer_container.html" . }}
  19. </div>
  20. {{ partial "footer.html" . }}