* Refactor sidebar logic + fix responsiveness * Add TOC * Add Pagination * Update exampleSite * Update README.md
19 lines
531 B
HTML
19 lines
531 B
HTML
{{ define "header" }}
|
|
<link rel="stylesheet" href="/assets/css/404.css">
|
|
{{ 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" alt="">
|
|
<div class="message">
|
|
<h1>404</h1>
|
|
<h4>The page you are looking for is not there yet.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|