From 128cfb247c2cbb83eec77cd7a86b1af77df766c6 Mon Sep 17 00:00:00 2001
From: Benjamin Neff <benjamin@coding4coffee.ch>
Date: Mon, 20 Apr 2015 22:32:11 +0200
Subject: [PATCH] fix not_public page

body was rendered in the head
---
 app/views/errors/not_public.haml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/app/views/errors/not_public.haml b/app/views/errors/not_public.haml
index e1f5f13d10..c330cb28e9 100644
--- a/app/views/errors/not_public.haml
+++ b/app/views/errors/not_public.haml
@@ -5,10 +5,10 @@
 - content_for :head do
   = stylesheet_link_tag :error_pages, :media => 'all'
 
-  #big-number.transparent
-    404
+#big-number.transparent
+  404
 
-  #content
-    = t('error_messages.post_not_public_or_not_exist')
-    %br
-    = t('error_messages.login_try_again', :login_link => new_user_session_path).html_safe
+#content
+  = t('error_messages.post_not_public_or_not_exist')
+  %br
+  = t('error_messages.login_try_again', :login_link => new_user_session_path).html_safe
-- 
GitLab