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

github.com/MarcusVirg/forty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Virginia <marcusvirg@yahoo.com>2018-01-24 22:31:33 +0300
committerGitHub <noreply@github.com>2018-01-24 22:31:33 +0300
commit42a70a28ad806a76e63bddd18c91e7979b21da2b (patch)
treee42d92067c7be5833d186d23106ca2d150d40eef
parentea933bfe2760911833b6aa4941816ee6a92fb5aa (diff)
parent1dabe195ebd11627135e12b4e1020ccec77ceec3 (diff)
Merge pull request #7 from salim-b/patch-1
correctly ident 404 page content
-rw-r--r--layouts/404.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/layouts/404.html b/layouts/404.html
index f668865..a36bd59 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -12,8 +12,10 @@
{{ "<!-- Main -->" | safeHTML }}
<div id="main">
- <h1>{{ .Site.Params.Error404.heading }}</h1>
- <p>{{ .Site.Params.Error404.text }}</p>
+ <div class="inner">
+ <h1>{{ .Site.Params.Error404.heading }}</h1>
+ <p>{{ .Site.Params.Error404.text }}</p>
+ </div>
</div>
{{ "<!-- Footer -->" | safeHTML}}
@@ -27,4 +29,4 @@
{{ partial "js.html" . }}
</body>
-</html> \ No newline at end of file
+</html>