32 lines
811 B
HTML
32 lines
811 B
HTML
|
{{- define "main" -}}
|
||
|
|
||
|
<div class="universal-wrapper pt-3">
|
||
|
|
||
|
<h1>{{ i18n "page_not_found" }}</h1>
|
||
|
|
||
|
{{/* Show search box if academia's search engine is enabled. */}}
|
||
|
{{ if eq site.Params.search.engine 1 }}
|
||
|
<form class="d-flex align-items-center mb-3">
|
||
|
<input name="q" type="search" class="form-control" id="search-query" placeholder="{{ i18n "search_placeholder" }}" autocomplete="off">
|
||
|
</form>
|
||
|
{{ end }}
|
||
|
|
||
|
{{/* Suggest recently published pages to the user. */}}
|
||
|
|
||
|
<p>{{ i18n "404_recommendations" }}</p>
|
||
|
|
||
|
{{ $query := site.RegularPages }}
|
||
|
{{ $count := len $query }}
|
||
|
{{ if gt $count 0 }}
|
||
|
<h2>{{ i18n "user_profile_latest" }}</h2>
|
||
|
<ul>
|
||
|
{{ range first 10 $query }}
|
||
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
{{ end }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{{- end -}}
|