<404.html>. Add favicon example. Modify footer vars to allow links not pointing to user profiles. <header.html> renamed to <header_wp.html> and part of it moved to <header.html> since the same block was repeated two times. Add Hugo version to footer
25 lines
460 B
HTML
25 lines
460 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ partial "nav.html" . }}
|
|
|
|
<div role="main" class="container main-content">
|
|
|
|
<div class="text-center">
|
|
<h1>Whoops, this page doesn't exist.</h1>
|
|
<h1>Move along. (404 error)</h1>
|
|
<br/>
|
|
|
|
<img src="{{ .Site.BaseURL }}/img/404-southpark.jpg" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</body>
|
|
</html>
|