Files
hugo-cwpearson/themes/hugo-academic-master/layouts/404.html
Carl Pearson be45676d32 Initial commit
2017-03-12 21:27:57 -05:00

25 lines
597 B
HTML

{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<div class="container">
<h1>Page not found</h1>
<p>Maybe you were looking for one of these?</p>
<h2>Recent Posts</h2>
{{ range last 20 (where .Data.Pages "Section" "=" "post") }}
<ul>
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
</ul>
{{ end }}
<h2>Recent Publications</h2>
{{ range last 20 (where .Data.Pages "Section" "=" "publication") }}
<ul>
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
</ul>
{{ end }}
</div>
{{ partial "footer_container.html" . }}
{{ partial "footer.html" . }}