* Update layout to use Hugo Image Processing. Created shortcode rimg that uses the srcset attribute to display responsive images. * Copy Static images to assets folder. * Add image processing to missing components + Update examples * Fix rendering in https://themes.gohugo.io/ Co-authored-by: Emruz Hossain <emruz@appscode.com>
29 lines
926 B
HTML
29 lines
926 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" }}
|
|
{{/* not found image */}}
|
|
{{ $notFoundImage := "/images/404.png" }}
|
|
|
|
{{/* resize the image. don't resize svg because it is not supported */}}
|
|
{{ $notFoundImage := resources.Get $notFoundImage}}
|
|
{{ if and $notFoundImage (ne $notFoundImage.MediaType.SubType "svg") }}
|
|
{{ $notFoundImage = $notFoundImage.Resize "1500x" }}
|
|
{{ end }}
|
|
{{ $notFoundImage = $notFoundImage.RelPermalink}}
|
|
|
|
<div class="container">
|
|
<div class="notFound">
|
|
<img src="{{ $notFoundImage }}" alt="">
|
|
<div class="message">
|
|
<h1>404</h1>
|
|
<h4>The page you are looking for is not there yet.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|