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

github.com/fncnt/vncnt-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfncnt <github@vncnt.eu>2019-03-06 19:04:05 +0300
committerfncnt <github@vncnt.eu>2019-03-06 19:04:05 +0300
commit8f23cc17270d2cc942ffcc72182b18db296b77e3 (patch)
treecfeb7ca173c8b76eb78e4a27e08106e56f158537
parent70f668a98d7ed4db782c208abf12781c376ab981 (diff)
Make 404.html layout more consistent with body.html layout
-rw-r--r--layouts/404.html16
1 files changed, 10 insertions, 6 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 1c3776d..b79ec51 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,11 +1,15 @@
<!DOCTYPE HTML>
{{ partial "includes" . }}
<div class="error404">
- <h1>{{ "**404**" | markdownify }}</h1>
- {{ with .Site.Params.error404 }}
- <h2>{{ "---" | markdownify }}{{ . | markdownify }}</h2>
- {{ else }}
- <h2>{{ "---" | markdownify }}{{ "There is no such page." | markdownify}}</h2>
- {{ end }}
+ <div class="row">
+ <div class="twelve columns">
+ <h1>{{ "**404**" | markdownify }}</h1>
+ {{ with .Site.Params.error404 }}
+ <h2>{{ "---" | markdownify }}{{ . | markdownify }}</h2>
+ {{ else }}
+ <h2>{{ "---" | markdownify }}{{ "There is no such page." | markdownify}}</h2>
+ {{ end }}
+ </div>
+ </div>
</div>
</html>