mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
feat: add 404 page
This commit is contained in:
parent
afb1714e30
commit
29b9a962eb
2 changed files with 53 additions and 0 deletions
53
layouts/404.html
Normal file
53
layouts/404.html
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" class="js csstransforms3d">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"> {{ partial "meta.html" . }} {{ partial "favicon.html" . }} {{ .Scratch.Add "title" "" }}{{ if isset .Site.Data.titles .Title }}{{ .Scratch.Set "title" (index .Site.Data.titles .Title).title }}{{ else }}{{ .Scratch.Set "title" .Title}}{{end}}
|
||||||
|
<title>{{ .Scratch.Get "title" }}</title>
|
||||||
|
{{ partial "style.html" . }}
|
||||||
|
<link href="/css/nucleus.css" rel="stylesheet">
|
||||||
|
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||||
|
<link href="/css/hybrid.css" rel="stylesheet">
|
||||||
|
<link href="/css/featherlight.min.css" rel="stylesheet">
|
||||||
|
<link href="/css/perfect-scrollbar.min.css" rel="stylesheet">
|
||||||
|
<link href="/css/theme.css" rel="stylesheet">
|
||||||
|
<link href="/css/hugo-theme.css" rel="stylesheet">
|
||||||
|
<style type="text/css">
|
||||||
|
:root #header + #content > #left > #rlblock_left {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
p,
|
||||||
|
li,
|
||||||
|
ul {
|
||||||
|
text-align: center
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<body class="" data-url="/">
|
||||||
|
|
||||||
|
<section id="body" style="margin-left:0px;">
|
||||||
|
<div id="overlay"></div>
|
||||||
|
<div id="chapter">
|
||||||
|
<div id="body-inner">
|
||||||
|
<h1>Error </h1>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<p>Woops. Looks like this page doesn't exist.</p>
|
||||||
|
<p></p>
|
||||||
|
<p><a href="{{.Site.BaseURL}}">Go to homepage</a></p>
|
||||||
|
<p><img src="/images/gopher-404.jpg" style="width:50%"></img></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
BIN
static/images/gopher-404.jpg
Normal file
BIN
static/images/gopher-404.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 215 KiB |
Loading…
Reference in a new issue