From 4e415133f550b470508e55dbe27ea1f2da29eeab Mon Sep 17 00:00:00 2001
From: karl <karl@suma-ev.de>
Date: Tue, 10 May 2016 13:12:54 +0200
Subject: [PATCH] =?UTF-8?q?*=20Die=20Datenschutz=20Seite=20=C3=A4hnelt=20j?=
 =?UTF-8?q?etzt=20dem=20Original,=20da=20jedoch=20die=20privacy.css=20und?=
 =?UTF-8?q?=20style.css=20konkurrieren,=20kommt=20es=20zu=20problemen.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 app/Http/routes.php                        |  8 ++++++++
 public/css/privacy.css                     | 20 ++++++++++++++++++++
 resources/views/datenschutz.blade.php      | 22 +++++++---------------
 resources/views/layouts/subPages.blade.php | 10 +++++-----
 4 files changed, 40 insertions(+), 20 deletions(-)
 create mode 100644 public/css/privacy.css

diff --git a/app/Http/routes.php b/app/Http/routes.php
index cc90ae1b7..1cf3424da 100644
--- a/app/Http/routes.php
+++ b/app/Http/routes.php
@@ -51,7 +51,15 @@
                 ->with('css', 'kontakt.css')
                 ->with('js', ['openpgp.min.js','kontakt.js']);
         });
+
         Route::post('kontakt', 'MailController@contactMail');
+
+        Route::get('datenschutz', function()
+        {
+            return view('datenschutz')
+                ->with('title', 'Datenschutz und Privatsphäre')
+                ->with('css', 'privacy.css');
+        });
     });
 
 
diff --git a/public/css/privacy.css b/public/css/privacy.css
new file mode 100644
index 000000000..5066b3f36
--- /dev/null
+++ b/public/css/privacy.css
@@ -0,0 +1,20 @@
+*{
+	
+}
+
+main li {
+    margin-bottom: 5px;
+}
+
+mg-panel li {
+    margin-top: 10px;
+}
+
+main ul li {
+	margin: 0 0 5 0px;
+}
+
+main ul {
+	list-style-type: disc;
+	text-align: left;
+}
\ No newline at end of file
diff --git a/resources/views/datenschutz.blade.php b/resources/views/datenschutz.blade.php
index d02d4e612..666b98a95 100644
--- a/resources/views/datenschutz.blade.php
+++ b/resources/views/datenschutz.blade.php
@@ -49,27 +49,19 @@
         </ul>
         <h2>Was andere &uuml;ber unser Privacy-Konzept auf Twitter sagen:
         </h2>
-        <pre>
-<p>&gt; 7.4.2014 C. Schulzki-Haddouti @kooptech
-&gt; MetaGer d&uuml;rfte im Moment die sicherste Suchmaschine weltweit sein
-</p>
+        <pre><p>&gt; 7.4.2014 C. Schulzki-Haddouti @kooptech
+&gt; MetaGer d&uuml;rfte im Moment die sicherste Suchmaschine weltweit sein</p>
 <p>&gt; 8.4.2014 Stiftung Datenschutz @DS_Stiftung
 &gt; Wenn das Suchergebnis anonym bleiben soll: @MetaGer, die gemeinn&uuml;tzige
-&gt; Suchmaschine aus #Hannover
-</p>
+&gt; Suchmaschine aus #Hannover</p>
 <p>&gt; 8.4.2014 Markus K&auml;kenmeister @markus2009
-&gt; Suchmaschine ohne Tracking
-</p>
+&gt; Suchmaschine ohne Tracking</p>
 <p>&gt; 8.4.2014 Marko [~sHaKaL~] @mobilef0rensics Nice; anonymous Search and find
-&gt; with MetaGer
-</p>
+&gt; with MetaGer</p>
 <p>&gt; 7.4.2014 Anfahrer @anfahrer
 &gt; Websuche mit #Datenschutz dank #MetaGer : Anonyme Suche und
-&gt; Ergebnisse via Proxy
-</p>
+&gt; Ergebnisse via Proxy</p>
 <p>&gt; 8.4.2014 stupidit&eacute; pue @dummheitstinkt
 &gt; wow, is this the MetaGer I used in the end 90s in internet cafes???
-&gt; "Anonymes Suchen und Finden mit MetaGer | heise"
-</p>
-		</pre>
+&gt; "Anonymes Suchen und Finden mit MetaGer | heise"</p></pre>
 @endsection
\ No newline at end of file
diff --git a/resources/views/layouts/subPages.blade.php b/resources/views/layouts/subPages.blade.php
index 1968df535..9d5a0236b 100644
--- a/resources/views/layouts/subPages.blade.php
+++ b/resources/views/layouts/subPages.blade.php
@@ -2,9 +2,9 @@
 
 @section('homeIcon')
 <a class="navbar-brand" href="/">
-  <div class="logo">
-    <h1>MetaGer
-    </h1>
-  </div>
-</a>
+				  <div class="logo">
+				    <h1>MetaGer
+				    </h1>
+				  </div>
+				</a>
 @endsection
\ No newline at end of file
-- 
GitLab