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

github.com/gundamew/hugo-bingo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBing-Sheng Chen <gundamew@gmail.com>2019-08-01 11:18:00 +0300
committerBing-Sheng Chen <gundamew@gmail.com>2019-08-01 11:18:46 +0300
commit5a27470a0cbb21aeec0ae016f761513678a8039a (patch)
tree2820608ba12c2617f5142e972c26a2cd1fe4a4d6
parent26589eb4ea60c4af997eac98cfc43dba3bab8330 (diff)
refactor(404): Remove undefined classes in 404 page
Remove undefined style classes in 404 page.
-rw-r--r--layouts/404.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 827ff42..2a2b125 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,8 +1,8 @@
{{ define "main" }}
-<main class="tc lh-copy">
- <div class="ph5">
- <h1 class="f1 f-headline-l code mb3 fw9 dib tracked-tight dark-blue">404</h1>
- <h2 class="tc f1-l fw1">Sorry, we can't find the page you are looking for.</h2>
+<main>
+ <div>
+ <h1>404</h1>
+ <h2>Sorry, we can't find the page you are looking for.</h2>
</div>
</main>
{{ end }}