404.html 975 B

12345678910111213141516171819202122232425262728293031
  1. {{- define "main" -}}
  2. <div class="universal-wrapper pt-3">
  3. <h1>{{ i18n "page_not_found" }}</h1>
  4. {{/* Show search box if built-in search engine is enabled. */}}
  5. {{ if in (slice "wowchemy" "algolia") (lower site.Params.features.search.provider) }}
  6. <form class="d-flex align-items-center mb-3">
  7. <input name="q" type="search" class="form-control" placeholder="{{ i18n "search_placeholder" }}" autocomplete="off">
  8. </form>
  9. {{ end }}
  10. {{/* Suggest recently published pages to the user. */}}
  11. <p>{{ i18n "404_recommendations" }}</p>
  12. {{ $query := where (where (where (where site.Pages.ByDate.Reverse "Title" "!=" "") "Kind" "in" (slice "page" "section")) "Params.private" "!=" true) "Permalink" "!=" "" }}
  13. {{ $count := len $query }}
  14. {{ if gt $count 0 }}
  15. <h2>{{ i18n "user_profile_latest" }}</h2>
  16. <ul>
  17. {{ range first 10 $query }}
  18. <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  19. {{ end }}
  20. </ul>
  21. {{ end }}
  22. </div>
  23. {{- end -}}