* Fix the single template to use the authors avatar correctly * Replace absURL with relURL and .Site.X with site.X Co-authored-by: Emruz Hossain <emruz@appscode.com>
19 lines
563 B
HTML
19 lines
563 B
HTML
{{ define "header" }}
|
|
<link rel="stylesheet" href="{{ "/assets/css/404.css" | relURL }}">
|
|
{{ end }}
|
|
|
|
{{ define "navbar" }}
|
|
{{ partial "navigators/navbar-2.html" (dict "baseURL" site.BaseURL "title" site.Title "hasToggleButton" false) }}
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<div class="container">
|
|
<div class="notFound">
|
|
<img src="{{ "/assets/images/404.png" | relURL }}" alt="">
|
|
<div class="message">
|
|
<h1>404</h1>
|
|
<h4>The page you are looking for is not there yet.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|