Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/d-kusk/minimage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke KONISHI <skydai1151@gmail.com>2019-10-13 06:15:10 +0300
committerDaisuke KONISHI <skydai1151@gmail.com>2019-10-13 06:15:10 +0300
commit6ed179237a882ff78a884f924edc60987aaa2ab2 (patch)
tree1582d2891a477335fa80fd69ab2697594d856f06
parent5547913569c86f8e6385ef01b521f4d3135966aa (diff)
Add 404 page's content resolved #61
-rw-r--r--layouts/404.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
index e69de29..5c3a899 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+<div class="p-single">
+ <div class="c-container">
+ <article class="c-post">
+ <h1 id="title">404 Page Not Found</h1>
+ <p style="margin-top: 1em;">The requested URL was not found on this server.<br>
+ The page you are looking for may be temporarily inaccessible or deleted.</p>
+ <p style="margin-top: 2em;">
+ <a class="c-link" href="{{ "/" | relURL }}">go home</a>
+ </p>
+ </article>
+ </div>
+</main>
+{{ end }}