21 lines
702 B
HTML
21 lines
702 B
HTML
|
<section id="error-404" class="section section--404"
|
||
|
style="color:{{ .Site.Params.light_color }}; background-color:{{ .Site.Params.dark_color }};"
|
||
|
>
|
||
|
<div class="section__container">
|
||
|
<div class="section__headline section__headline--404">
|
||
|
<h1>Whoops!</h1>
|
||
|
<h2>Content Load Error</h2>
|
||
|
</div>
|
||
|
<div class="section__content section-content--{{ .File.BaseFileName }}"
|
||
|
{{ with .Params.align }} style="align-items:
|
||
|
{{ if eq . "left" }} flex-start {{ end }}
|
||
|
{{ if eq . "right" }} flex-end {{ end }};"
|
||
|
{{ end }} >
|
||
|
The content you tried to load does not exist. </br>
|
||
|
<div>continue by clicking <a class="404__link" href="{{ .Site.BaseURL }}">here</a></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
|