about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/Blog.hs16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/Blog.hs b/src/Blog.hs
index 6cc00510c0..ee87cf8d5f 100644
--- a/src/Blog.hs
+++ b/src/Blog.hs
@@ -222,16 +222,12 @@ editPage (Entry{..}) = adminTemplate "Index" $ [shamlet|
 
 showError :: BlogError -> BlogLang -> Html
 showError NotFound l = blogTemplate l (T.append ": " $ notFoundTitle l) $ [shamlet|
-<div .row .text-center>
-  <div .span12  .notFoundFace>:(
-<div .row .text-center>
-  <div .span12 .notFoundText>
-    #{notFoundText l}
+<p>:(
+<p>#{notFoundText l}
+<hr>
 |]
 showError UnknownError l = blogTemplate l "" $ [shamlet|
-<div .row .text-center>
-  <div .span12  .notFoundFace>:(
-<div .row .text-center>
-  <div .span12 .notFoundText>
-    #{unknownErrorText l}
+<p>:(
+<p>#{unknownErrorText l}
+<hr>
 |]