initial commit
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
piwik.php
|
||||||
62
.htaccess
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
RewriteEngine on
|
||||||
|
RewriteBase /
|
||||||
|
|
||||||
|
## www-Redirection
|
||||||
|
#RewriteCond %{HTTP_HOST} !^max-mehl\.com$
|
||||||
|
#RewriteRule ^(.*)$ https://max-mehl.com/$1 [L,R=301]
|
||||||
|
#RewriteCond %{HTTP_HOST} !^mehl\.mx$
|
||||||
|
#RewriteRule ^(.*)$ http://mehl.mx/$1 [L,R=301]
|
||||||
|
RewriteCond %{HTTP_HOST} ^(.*)\.mehl\.mx$ [NC]
|
||||||
|
RewriteRule ^(.*)$ http://mehl.mx/$1 [L,R=301]
|
||||||
|
|
||||||
|
## Alias Domain
|
||||||
|
RewriteCond %{HTTP_HOST} max-mehl.com$ [NC]
|
||||||
|
RewriteRule ^(.*) http://mehl.mx/$1 [R=301,L]
|
||||||
|
|
||||||
|
## Nice URLs
|
||||||
|
# Rewrite URL/de to URL/index.de.php
|
||||||
|
RewriteRule ^(..)/?$ /index.$1.php
|
||||||
|
# Rewrite URL/en/contact to URL/contact.en.php
|
||||||
|
RewriteRule ^(..)/(.*)$ /$2.$1.php
|
||||||
|
# Rewrite empty URL to standard index page
|
||||||
|
RewriteRule ^$ index.de.php
|
||||||
|
# Rewrite URL/contact to URL/contact.de.php
|
||||||
|
RewriteRule ^([a-z]+)/?$ /$1.de.php
|
||||||
|
|
||||||
|
## Error Documents
|
||||||
|
ErrorDocument 403 /404.php
|
||||||
|
ErrorDocument 404 /404.php
|
||||||
|
|
||||||
|
# Old redirections
|
||||||
|
Redirect 301 /blog http://blog.max-mehl.com/
|
||||||
|
Redirect 301 /it-services http://it.mehl.mx
|
||||||
|
|
||||||
|
|
||||||
|
## SSL
|
||||||
|
# HTTPS-Verschluesselung erzwingen
|
||||||
|
# RewriteCond %{SERVER_PORT} !^443$
|
||||||
|
# RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI}
|
||||||
|
|
||||||
|
|
||||||
|
# Compression
|
||||||
|
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript
|
||||||
|
|
||||||
|
# Caching
|
||||||
|
<ifModule mod_expires.c>
|
||||||
|
# A = access <seconds>
|
||||||
|
ExpiresActive On
|
||||||
|
ExpiresDefault A300
|
||||||
|
ExpiresByType text/html A300
|
||||||
|
ExpiresByType text/plain A300
|
||||||
|
ExpiresByType application/x-javascript A3600
|
||||||
|
ExpiresByType text/css A604800
|
||||||
|
ExpiresByType image/gif A604800
|
||||||
|
ExpiresByType image/png A604800
|
||||||
|
ExpiresByType image/jpeg A604800
|
||||||
|
ExpiresByType application/x-shockwave-flash A604800
|
||||||
|
ExpiresByType video/x-flv A604800
|
||||||
|
ExpiresByType application/pdf A604800
|
||||||
|
ExpiresByType application/x-httpd-php A604800
|
||||||
|
ExpiresByType image/x-icon A2592000
|
||||||
|
</ifModule>
|
||||||
|
|
||||||
40
404.php
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Error</title>
|
||||||
|
|
||||||
|
<?php include '/static/head.de.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.de.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<h2>Error</h2>
|
||||||
|
<p>Sorry, the website you've looking for does not exist.</p>
|
||||||
|
|
||||||
|
<h2>Fehler</h2>
|
||||||
|
<p>Entschuldigung, die Seite, nach der Sie gesucht haben, existiert nicht.</p>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
38
about.de.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Über mich</title>
|
||||||
|
<link lang="en" title="English" href="/en/about" hreflang="en" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.de.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.de.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/en/about"><?php include '/static/lang.de.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/about.de.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
38
about.en.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-EN">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | About me</title>
|
||||||
|
<link lang="en" title="Deutsch" href="/de/about" hreflang="de" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.en.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.en.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/de/about"><?php include '/static/lang.en.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/about.en.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
38
contact.de.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Kontakt</title>
|
||||||
|
<link lang="en" title="English" href="/en/contact" hreflang="en" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.de.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.de.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/en/contact"><?php include '/static/lang.de.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/contact.de.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
38
contact.en.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-EN">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Contact</title>
|
||||||
|
<link lang="en" title="Deutsch" href="/de/contact" hreflang="de" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.en.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.en.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/de/contact"><?php include '/static/lang.en.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/contact.en.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
1
googlee6be698e55014a70.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
google-site-verification: googlee6be698e55014a70.html
|
||||||
BIN
img/blog.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
img/de.png
Normal file
|
After Width: | Height: | Size: 545 B |
BIN
img/en.png
Normal file
|
After Width: | Height: | Size: 599 B |
BIN
img/favicon.ico
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
img/favicon.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
img/it.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
img/max.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
43
impressum.de.php
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl - Impressum</title>
|
||||||
|
<style type="text/css">
|
||||||
|
.zzz {
|
||||||
|
color:transparent;
|
||||||
|
display:inline-block;
|
||||||
|
float:right;
|
||||||
|
font-size:.001px;
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
<h1>Impressum</h1>
|
||||||
|
<p><strong>Dieses Impressum gilt für alle Seiten der Domain <em>http://mehl.mx</em> sowie aller Subdomains.</strong></p>
|
||||||
|
<p>Angaben gemäß § 5 TMG:</p>
|
||||||
|
<p>Max Mehl<br />
|
||||||
|
Singener Straße 35a<br />
|
||||||
|
78<span class="zzz">5616</span>256 Steiß<span class="zzz">MÜHLHEIM</span>lingen<br />
|
||||||
|
E-Mail: ma<span class="zzz">REMOVE</span>il@me<span class="zzz">SPAM</span>hl.mx<br />
|
||||||
|
Telefon: +49 77<span class="zzz">29418</span>38 2031<span class="zzz">819852</span>060<br />
|
||||||
|
Ust-ID: DE280794669</p>
|
||||||
|
|
||||||
|
<h2>Haftungsausschluss:</h2>
|
||||||
|
<p><strong>Haftung für Inhalte</strong></p>
|
||||||
|
<p>Die Inhalte meiner Webseiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte kann ich jedoch keine Gewähr übernehmen. Als Diensteanbieter bin ich gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG bin ich als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden von entsprechenden Rechtsverletzungen werde ich diese Inhalte umgehend entfernen.</p>
|
||||||
|
<p><strong>Haftung für Links</strong></p>
|
||||||
|
<p>Meine Angebote enthalten möglicherweise Links zu externen Webseiten Dritter, auf deren Inhalte ich keinen Einfluss habe. Deshalb kann ich für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werde ich derartige Links umgehend entfernen.</p>
|
||||||
|
<p><strong>Urheberrecht</strong></p>
|
||||||
|
<p>Sämtliche Inhalte dieser Webseiten stehen - soweit nicht anders vermerkt - unter der CC BY-SA 4.0-Lizenz: http://creativecommons.org/licenses/by-sa/4.0/de</p>
|
||||||
|
<p>Soweit die Inhalte auf dieser Seite nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitte ich um einen entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werde ich derartige Inhalte umgehend entfernen.</p>
|
||||||
|
<p><strong>Datenschutz</strong></p>
|
||||||
|
<p>Die Nutzung meiner Webseiten ist ohne Angabe personenbezogener Daten möglich. Soweit auf meinen Seiten personenbezogene Daten (beispielsweise Name, Anschrift oder E-Mail-Adressen) erhoben werden, erfolgt dies, soweit möglich, stets auf freiwilliger Basis. Diese Daten werden ohne Ihre ausdrückliche Zustimmung nicht an Dritte weitergegeben. Ich weise darauf hin, dass die Datenübertragung im Internet (z.B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich. Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten durch Dritte zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit ausdrücklich widersprochen. Ich behalte mir ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-Mails, vor.</p>
|
||||||
|
<p>Diese Webseiten verwenden Piwik, eine Freie Software unter der GPL-Lizenz für Analysezwecke. Piwik wird zur statistischen Auswertung der Besucherdaten verwendet und liest dafür anonymisierte Besucherdaten aus. Die IP-Adresse des Besuchers wird dabei so modifiziert, dass sie nicht dafür verwendet werden kann, um sie mit realen Personen in Verbindung bringen zu können. Diese Daten werden nur zu Zwecken der Verbesserung der Webseiten verwendet und nicht zu Werbezwecken. Alle erhobenen Daten werden nicht an Dritte übertragen.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
44
index.de.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl</title>
|
||||||
|
<link lang="en" title="English" href="/en" hreflang="en" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.de.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.de.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/en"><?php include '/static/lang.de.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- INDEX page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big">
|
||||||
|
<?php include '/text/index-intro.de.html'; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br class="clear" />
|
||||||
|
|
||||||
|
<!-- BIG BOXES -->
|
||||||
|
<?php include '/text/index-box.de.html'; ?>
|
||||||
|
<!-- / BIG BOXES -->
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / INDEX page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
44
index.en.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-EN">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl</title>
|
||||||
|
<link lang="en" title="Deutsch" href="/de" hreflang="de" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.en.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.en.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/de"><?php include '/static/lang.en.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- INDEX page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big">
|
||||||
|
<?php include '/text/index-intro.en.html'; ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br class="clear" />
|
||||||
|
|
||||||
|
<!-- BIG BOXES -->
|
||||||
|
<?php include '/text/index-box.en.html'; ?>
|
||||||
|
<!-- / BIG BOXES -->
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / INDEX page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
65
keybase.txt
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
==================================================================
|
||||||
|
https://keybase.io/mxmehl
|
||||||
|
--------------------------------------------------------------------
|
||||||
|
|
||||||
|
I hereby claim:
|
||||||
|
|
||||||
|
* I am an admin of http://mehl.mx
|
||||||
|
* I am mxmehl (https://keybase.io/mxmehl) on keybase.
|
||||||
|
* I have a public key with fingerprint DBCE CEB3 8C67 6EAF 4D0B D8DF EC65 5E67 549E 41E2
|
||||||
|
|
||||||
|
To claim this, I am signing this object:
|
||||||
|
|
||||||
|
{
|
||||||
|
"body": {
|
||||||
|
"key": {
|
||||||
|
"fingerprint": "dbceceb38c676eaf4d0bd8dfec655e67549e41e2",
|
||||||
|
"host": "keybase.io",
|
||||||
|
"key_id": "EC655E67549E41E2",
|
||||||
|
"uid": "6e3eda8a4599111234e01764cd5a9700",
|
||||||
|
"username": "mxmehl"
|
||||||
|
},
|
||||||
|
"service": {
|
||||||
|
"hostname": "mehl.mx",
|
||||||
|
"protocol": "http:"
|
||||||
|
},
|
||||||
|
"type": "web_service_binding",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
"ctime": 1398595079,
|
||||||
|
"expire_in": 157680000,
|
||||||
|
"prev": "55f9e6dd0b4f10691239530fe1a5c8359c92de86b97068eaac8e2ae1cbee21fc",
|
||||||
|
"seqno": 3,
|
||||||
|
"tag": "signature"
|
||||||
|
}
|
||||||
|
|
||||||
|
with the aforementioned key, yielding the PGP signature:
|
||||||
|
|
||||||
|
-----BEGIN PGP MESSAGE-----
|
||||||
|
Version: GnuPG v1
|
||||||
|
|
||||||
|
owE1UWtIU2EY3uxmMUNzJGEIfvYjbNg5287ZOYN+SK4fXRENFkXrXN5tR7dz1nam
|
||||||
|
ExmJv0yxzAqWOTPKSiZhSaRl6waJNKigSSJ0lQwvsCRIEqLvSH5/Pr7nfZ7nfZ/v
|
||||||
|
7chZo8vSz8NJT3VP+Vf962ezvK7qxMcNjYhXxAZkb0S1sHK5JdkDwUBQklVkRyIv
|
||||||
|
gAC8hRFoGw2c2yoSvMiIbhBoigLaRllZsJJgRibkVUKaAtvwXAjKJAVj+OGSRIw6
|
||||||
|
9mK+Y4XvsJIOjR9eKdBgAZFjOCvFsiRJmi1WIEgbbRVEimNtBKERQxCUOT9gtj/i
|
||||||
|
B68PRU0IY3WSANrEWuPVOq6W+SNYFAgqqiIoPgx6VTVg1zRqQ0Aj1QPv+i938ZIs
|
||||||
|
4sBYUAfBkKTIyE5ipqBKmh9pYRmKpQgba0IQCUhBcEkag7LRDIGP1gbqsCVFuVmg
|
||||||
|
Rfw5VjdJ0CzOwVIWwg0kRwmMhWIF1iwCQ/M4Es0AxwkMmDkgBR7ATLoFpAU6LSvI
|
||||||
|
bsFjch5sGZI8MqeGg4CiZ/Xb1+r0Wbr167K0lek2bcxdXWRfNFt345b//eeM3fWi
|
||||||
|
+shVZ7GcTBZE5nLHDdAdFn9lLqO4M9pmm2HfdFTcXbYZFjvT7dNzYzXG8OSrxAFj
|
||||||
|
cjSR8hwSdpk75ZaWnFi2s/Ba6453z4eXYrG2UV/TwdS59I+8pnj+kLH/5sMpXyma
|
||||||
|
nxjYXT1Y+eHolPNiYVv+/Ce+4IthIY2OV2QuxJr1w1Wx1O+y9GRx18KWXvdse27Y
|
||||||
|
VDSmz0tsDT9eNnjPdJWevz9Tckpe/Dn48un0wNKj8Uvfk9/2DJVzI5bbkT8ldzKH
|
||||||
|
r3QcU0t79sXLS/4Om1K1O3P699+bIJofFC0ZyW7d5rFtb2tqK1sTfeMjvfGK+utP
|
||||||
|
Zh3/AA==
|
||||||
|
=5SF0
|
||||||
|
-----END PGP MESSAGE-----
|
||||||
|
|
||||||
|
And finally, I am proving ownership of this host by posting or
|
||||||
|
appending to this document.
|
||||||
|
|
||||||
|
View my publicly-auditable identity here: https://keybase.io/mxmehl
|
||||||
|
|
||||||
|
==================================================================
|
||||||
|
|
||||||
38
links.de.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Links</title>
|
||||||
|
<link lang="en" title="English" href="/en/links" hreflang="en" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.de.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.de.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/en/links"><?php include '/static/lang.de.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/links.de.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
38
links.en.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-EN">
|
||||||
|
<head>
|
||||||
|
<title>Max Mehl | Links</title>
|
||||||
|
<link lang="en" title="Deutsch" href="/de/links" hreflang="de" rel="alternate" type="text/html">
|
||||||
|
|
||||||
|
<?php include '/static/head.en.html'; ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="home blog custom-background">
|
||||||
|
|
||||||
|
<div id="header">
|
||||||
|
<div id="header-content">
|
||||||
|
<?php include '/static/nav.en.html'; ?>
|
||||||
|
|
||||||
|
<div class="info">
|
||||||
|
<p><a target="_blank" href="/impressum">Impressum</a></p>
|
||||||
|
<p><a href="/de/links"><?php include '/static/lang.en.html'; ?></a></p>
|
||||||
|
</div>
|
||||||
|
</div><!-- / header-content -->
|
||||||
|
</div><!-- / header -->
|
||||||
|
|
||||||
|
<div id="header-bottom"> </div>
|
||||||
|
<div id="container">
|
||||||
|
<h1 id="heading">Max Mehl</h1>
|
||||||
|
</div> <!-- / container -->
|
||||||
|
|
||||||
|
<!-- page -->
|
||||||
|
<div id="featured-boxs">
|
||||||
|
<div class="featured-box-big textonly">
|
||||||
|
<?php include '/text/contact.en.html'; ?>
|
||||||
|
</div>
|
||||||
|
</div> <!-- / featured-boxs -->
|
||||||
|
<!-- / page -->
|
||||||
|
|
||||||
|
<?php include '/static/piwik.html'; ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
4
robots.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow: /impressum
|
||||||
|
Disallow: /impressum.de.php
|
||||||
|
Disallow: /404.php
|
||||||
5
static/head.de.html
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="description" content="Max Mehl, B.A. in Politik- und Verwaltungswissenschaften und Gründer einer IT-Dienstleistungsfirma, ist Experte auf dem Gebiet Onlinekommunikation.">
|
||||||
|
<meta name="keywords" content="student konstanz berlin IT dienstleistungen service computer politik verwaltung FSFE pfadfinder vorstand gründer kommunikation">
|
||||||
|
<link rel='stylesheet' href='/style.css' type='text/css' media='all' />
|
||||||
|
<link rel='icon' href='/img/favicon.ico' type='image/x-icon' />
|
||||||
5
static/head.en.html
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="description" content="Max Mehl, B.A. in Political and Administrative science and founder of a IT service company, is an expert in online communications.">
|
||||||
|
<meta name="keywords" content="student konstanz constance berlin IT service computer politics administration FSFE scouts chairman founder communication">
|
||||||
|
<link rel='stylesheet' href='/style.css' type='text/css' media='all' />
|
||||||
|
<link rel='icon' href='/img/favicon.ico' type='image/x-icon' />
|
||||||
1
static/lang.de.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<img alt="English" title="English" src="/img/en.png"> English
|
||||||
1
static/lang.en.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<img alt="Deutsch" title="Deutsch" src="/img/de.png"> Deutsch
|
||||||
8
static/nav.de.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<nav id="simplicity-main-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="/de">Start</a></li>
|
||||||
|
<li><a href="/de/about">Über mich</a></li>
|
||||||
|
<li><a href="/de/links">Links</a></li>
|
||||||
|
<li><a href="/de/contact">Kontakt</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
8
static/nav.en.html
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<nav id="simplicity-main-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="/en">Start</a></li>
|
||||||
|
<li><a href="/en/about">About me</a></li>
|
||||||
|
<li><a href="/en/links">Links</a></li>
|
||||||
|
<li><a href="/en/contact">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
14
static/piwik.html
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<!-- Piwik -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
var _paq = _paq || [];
|
||||||
|
_paq.push(['trackPageView']);
|
||||||
|
_paq.push(['enableLinkTracking']);
|
||||||
|
(function() {
|
||||||
|
var u="//mehl.mx/";
|
||||||
|
_paq.push(["setTrackerUrl", u+"piwik.php"]);
|
||||||
|
_paq.push(["setSiteId", "9"]);
|
||||||
|
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0];
|
||||||
|
g.type="text/javascript"; g.async=true; g.defer=true; g.src=u+"piwik.php"; s.parentNode.insertBefore(g,s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<!-- End Piwik Code -->
|
||||||
401
style.css
Normal file
@@ -0,0 +1,401 @@
|
|||||||
|
/*
|
||||||
|
Theme Name: Simplicity Extra-Lite
|
||||||
|
Theme URI: http://mehl.mx
|
||||||
|
Author: Max Mehl
|
||||||
|
Author URI: http://mehl.mx
|
||||||
|
Description: Heavily Modified and shrinked version of Simplicity lite Wordpress theme by D5 Creation
|
||||||
|
Version: 1.0
|
||||||
|
Tags: maxmehl
|
||||||
|
License: GNU General Public License v2 or later
|
||||||
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
Text Domain: simplicity
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
/* BASIC STUFF */
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, font, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td{
|
||||||
|
border:0;
|
||||||
|
font-family:inherit;
|
||||||
|
font-size:100%;
|
||||||
|
font-style:inherit;
|
||||||
|
font-weight:inherit;
|
||||||
|
margin:0;
|
||||||
|
outline:0;
|
||||||
|
padding:0;
|
||||||
|
vertical-align:baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
:focus{
|
||||||
|
outline:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a img{
|
||||||
|
border:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
article,
|
||||||
|
aside,
|
||||||
|
details,
|
||||||
|
figcaption,
|
||||||
|
figure,
|
||||||
|
footer,
|
||||||
|
header,
|
||||||
|
hgroup,
|
||||||
|
menu,
|
||||||
|
nav,
|
||||||
|
section{
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div, p, a, li, img{
|
||||||
|
transition:all 1s;
|
||||||
|
-moz-transition:all 1s;
|
||||||
|
-o-transition:all 1s;
|
||||||
|
-webkit-transition:all 1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container{
|
||||||
|
/* width:930px; */
|
||||||
|
margin:40px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header{
|
||||||
|
height:70px;
|
||||||
|
background:none repeat-x scroll 0 0 #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header-bottom{
|
||||||
|
background:none no-repeat scroll center top #0AB4F3;
|
||||||
|
height:70px;
|
||||||
|
margin:-7px 0 -130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header-content {
|
||||||
|
margin: auto;
|
||||||
|
width: 620px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
color:#6a6969;
|
||||||
|
font-family:'Anaheim', sans-serif;
|
||||||
|
font-size:14px;
|
||||||
|
line-height:1.15;
|
||||||
|
min-width:620px;
|
||||||
|
word-wrap:break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#content{
|
||||||
|
float:left;
|
||||||
|
width:70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MENU */
|
||||||
|
#simplicity-main-menu{
|
||||||
|
color:#EEEEEE;
|
||||||
|
float:left;
|
||||||
|
line-height:1;
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul{
|
||||||
|
list-style:none outside none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu li{
|
||||||
|
float:left;
|
||||||
|
position:relative;
|
||||||
|
margin:0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu a{
|
||||||
|
color:#AAAAAA;
|
||||||
|
display:block;
|
||||||
|
font-size:13px;
|
||||||
|
min-width:40px;
|
||||||
|
padding:25px 10px 15px;
|
||||||
|
position:relative;
|
||||||
|
text-align:center;
|
||||||
|
text-transform:uppercase;
|
||||||
|
border-bottom:5px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu a:hover,
|
||||||
|
#simplicity-main-menu .current-menu-item > a,
|
||||||
|
#simplicity-main-menu .current-menu-ancestor > a,
|
||||||
|
#simplicity-main-menu .current_page_item > a,
|
||||||
|
#simplicity-main-menu .current_page_ancestor > a{
|
||||||
|
color:#45a9f6;
|
||||||
|
border-bottom:5px solid #45a9f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu li ul{
|
||||||
|
float:left;
|
||||||
|
position:relative;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul ul,
|
||||||
|
.sub-menu, .sub-menu ul ul{
|
||||||
|
display:none;
|
||||||
|
float:left;
|
||||||
|
left:0;
|
||||||
|
position:absolute;
|
||||||
|
border-bottom:5px solid #000000;
|
||||||
|
border-top:5px solid #000000;
|
||||||
|
border-radius:5px;
|
||||||
|
background:#F2F2F2;
|
||||||
|
background:rgba(242, 242, 242, 0.95);
|
||||||
|
padding:5px;
|
||||||
|
box-shadow:0px 0px 5px 0px #000000;
|
||||||
|
z-index:10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul li ul li{
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul ul ul{
|
||||||
|
left:100%;
|
||||||
|
top:0;
|
||||||
|
z-index:999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul ul a{
|
||||||
|
border-bottom:1px solid #BFBFBF;
|
||||||
|
border-top:1px solid #FFFFFF;
|
||||||
|
color:#242424;
|
||||||
|
padding:9px 15px;
|
||||||
|
width:140px;
|
||||||
|
text-align:left;
|
||||||
|
text-transform:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul ul a:hover,
|
||||||
|
#simplicity-main-menu ul ul .current-menu-item > a,
|
||||||
|
#simplicity-main-menu ul ul .current-menu-ancestor > a,
|
||||||
|
#simplicity-main-menu ul ul .current_page_item > a,
|
||||||
|
#simplicity-main-menu ul ul .current_page_ancestor > a{
|
||||||
|
background:#555555;
|
||||||
|
color:#EEEEEE;
|
||||||
|
border-bottom:1px solid #BFBFBF;
|
||||||
|
}
|
||||||
|
|
||||||
|
#simplicity-main-menu ul li:hover > ul{
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* CONTAINER */
|
||||||
|
h1{
|
||||||
|
font-size:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
font-size:23px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h2 a, h2 a:visited, h3, h4, h5, h6{
|
||||||
|
font-family:'News Cycle', sans-serif;
|
||||||
|
font-weight:bold;
|
||||||
|
line-height:1.25;
|
||||||
|
margin:0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,h2,h3,h4,h5,h6{
|
||||||
|
clear:both;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
color:#6A6969;
|
||||||
|
margin-bottom:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
color:#0387BF;
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
color:#0387BF;
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container,
|
||||||
|
#content,
|
||||||
|
#content-full{
|
||||||
|
font-size:16px;
|
||||||
|
text-align:justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content img,
|
||||||
|
#content-full img{
|
||||||
|
height:auto;
|
||||||
|
max-width:100%;
|
||||||
|
vertical-align:middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#heading{
|
||||||
|
color:#ffffff;
|
||||||
|
font-size:35px;
|
||||||
|
margin:40px auto;
|
||||||
|
text-align:center;
|
||||||
|
/* width:700px; */
|
||||||
|
font-weight:100;
|
||||||
|
padding:20px 20px 0px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-desc{
|
||||||
|
color:#ffffff;
|
||||||
|
font-size:14px;
|
||||||
|
margin:-40px auto 10px;
|
||||||
|
padding:0 20px;
|
||||||
|
text-align:left;
|
||||||
|
width:620px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* BOXES */
|
||||||
|
#featured-boxs{
|
||||||
|
padding:0 0 10px;
|
||||||
|
display:block;
|
||||||
|
margin: 0;
|
||||||
|
text-align:center;
|
||||||
|
line-height:1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.featured-box{
|
||||||
|
width:350px;
|
||||||
|
margin:0 15px 10px;
|
||||||
|
display:inline-block;
|
||||||
|
text-align:justify;
|
||||||
|
vertical-align:top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.featured-box-big{
|
||||||
|
width:620px;
|
||||||
|
margin:0 15px 10px;
|
||||||
|
display:inline-block;
|
||||||
|
text-align:justify;
|
||||||
|
vertical-align:top;
|
||||||
|
background:#DDDDDD;
|
||||||
|
background:none repeat scroll 0 0 rgba(255, 255, 255, 0.35);
|
||||||
|
border-left:8px solid #ccc;
|
||||||
|
margin-bottom:15px;
|
||||||
|
padding-left:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textonly {
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textonly ul {
|
||||||
|
padding-left:15px;
|
||||||
|
margin-bottom:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.featured-box a {
|
||||||
|
color: #6A6969;
|
||||||
|
}
|
||||||
|
|
||||||
|
#featured-boxs h1{
|
||||||
|
font-family:Verdana, Geneva, sans-serif;
|
||||||
|
font-weight:100;
|
||||||
|
font-size:30px;
|
||||||
|
color:#555555;
|
||||||
|
}
|
||||||
|
|
||||||
|
#featured-boxs h2{
|
||||||
|
font-family:Verdana, Geneva, sans-serif;
|
||||||
|
font-weight:100;
|
||||||
|
font-size:19px;
|
||||||
|
color:#555555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.featured-box-first{
|
||||||
|
padding:20px 0;
|
||||||
|
width:210px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#featured-boxs img.box-image{
|
||||||
|
border:3px solid #EEEEEE;
|
||||||
|
width:350px;
|
||||||
|
height:70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#featured-boxs img.box-image:hover{
|
||||||
|
box-shadow:0 0 11px 0px #555555;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3.featured-box2{
|
||||||
|
min-width:140px;
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* INFO IN HEADER */
|
||||||
|
.info{
|
||||||
|
position:absolute;
|
||||||
|
top:7px;
|
||||||
|
right:20px;
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info p a{
|
||||||
|
color:#AAAAAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* EMAIL PROTECTION */
|
||||||
|
.zzz {
|
||||||
|
color:transparent;
|
||||||
|
display:none;
|
||||||
|
float:right;
|
||||||
|
font-size:.001px;
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* BLOCKQUOTE */
|
||||||
|
blockquote, q {
|
||||||
|
background:#DDDDDD;
|
||||||
|
background:none repeat scroll 0 0 rgba(255, 255, 255, 0.35);
|
||||||
|
border-left:5px solid #ccc;
|
||||||
|
margin:20px 10px;
|
||||||
|
padding:10px;
|
||||||
|
quotes:'<<' '>>';
|
||||||
|
border-right:10px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote:before, q:before {
|
||||||
|
color:#ccc;
|
||||||
|
content:'\201C';
|
||||||
|
font-size:4em;
|
||||||
|
line-height:.1em;
|
||||||
|
margin-right:.20em;
|
||||||
|
vertical-align:-.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote:after, q:after {
|
||||||
|
color:#ccc;
|
||||||
|
content:'\201D';
|
||||||
|
font-size:4em;
|
||||||
|
line-height:.1em;
|
||||||
|
margin-left:.20em;
|
||||||
|
vertical-align:-.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote p, q p {
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
|
||||||
23
text/about.de.html
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<h1>Über mich</h2>
|
||||||
|
|
||||||
|
<p>Wie schon bei Galileo ist auch bei mir Neugier die Kraft, die mich das meiste von dem hat lernen lassen, was ich heute weiß. Seien es Politik, Informationstechnik oder Freizeit, ich finde überall Gebiete, die mein Interesse wecken.</p>
|
||||||
|
|
||||||
|
<p><blockquote>Die Neugier steht immer an erster Stelle eines Problems, das gelöst werden will.<br />
|
||||||
|
- Galileo Galilei</blockquote></p>
|
||||||
|
|
||||||
|
<h4>Technik</h4>
|
||||||
|
<p>Schon früh habe ich mich für alles rund um Computer begeistern können. Auch hier von Neugier getrieben, wandte ich mich immer mehr Freier Software wie GNU/Linux zu, weil diese mir mehr Sicherheit und Freiheit beim Arbeiten und Lernen gewährt. Daher engagiere ich mich für die <a href="https://fsfe.org">Free Software Foundation Europe</a> und verdiene mit <a href="//it.mehl.mx">meiner eigenen IT-Dienstleistungs-Firma</a> meine ersten Brötchen.</p>
|
||||||
|
|
||||||
|
<h4>Ausbildung</h4>
|
||||||
|
<p>IT und Politik bestimmen große Teile der modernen Welt. Um mehr über letzteres zu erfahren, habe ich mein Studium der Politik- und Verwaltungswissenschaften an der Universität Konstanz absolviert und werde einen ähnlichen Pfad auch im Master-Studium verfolgen. Besonders interessieren mich neben Netzpolitik die Felder Außenpolitik und politische Kommunikation.</p>
|
||||||
|
|
||||||
|
<h4>Freizeit</h4>
|
||||||
|
<p>In meiner Freizeit war ich vor meinem Umzug Vorstand und Jugendleiter der Konstanzer DPSG-Pfadfinder. Ansonsten spiele ich gerne Gitarre, Tischtennis und Pen&Paper-Rollenspiele mit Freunden oder widme mich einem meiner zahlreichen kleineren Projekte.</p>
|
||||||
|
|
||||||
|
<h4>Bisherige Stationen</h4>
|
||||||
|
<ul>
|
||||||
|
<li>2015: Fünf Monate ehrenamtliche Arbeit in Moshi (Tansania) bei <a href="http://www.tareo-tz.org">TAREO</a></li>
|
||||||
|
<li>2013-2014: Praktikum bei der <a href="https://fsfe.org">Free Software Foundation Europe</a> in Berlin</li>
|
||||||
|
<li>2010-2015: Studium an der Universität Konstanz</li>
|
||||||
|
<li>2009-2015: Erst Praktikant und später Mitarbeiter bei <a href="http://punkt-computer.de">PUNKT ComputerService</a> in Konstanz</li>
|
||||||
|
</ul>
|
||||||
23
text/about.en.html
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<h1>About me</h1>
|
||||||
|
|
||||||
|
<p>Like Galileo said, curiosity is the force which enabled me to learn most of the things I know today. No matter if politics, information technology, or free time - I find areas of my interest everywhere.</p>
|
||||||
|
|
||||||
|
<p><blockquote>Curiosity always is in the first place of a problem which wants to be solved.<br />
|
||||||
|
- Galileo Galilei</blockquote></p>
|
||||||
|
|
||||||
|
<h4>Technology</h4>
|
||||||
|
<p>Even in my early years I have been fascinated by everything around computers. Again driven by curiosity I began tinkering with Free Software like GNU/Linux because it provides more security and freedom when working and learning. No least because of that I'm involved in the <a href="https://fsfe.org">Free Software Foundation Europe</a> and make my bread with <a href="//it.mehl.mx">my own IT service</a> company.</p>
|
||||||
|
|
||||||
|
<h4>Education</h4>
|
||||||
|
<p>IT and politics rules huge parts of today's world. In order to learn more about the latter I finished a study in Political and Administrative Science and will follow a similar path in my master's degree. Fields of particular interest are internet and foreign policy and political communication.</p>
|
||||||
|
|
||||||
|
<h4>Free Time</h4>
|
||||||
|
<p>In my free time I have been head of leadership and scoutmaster at the DPSG scouts in Konstanz before my move. Besides I enjoy playing guitar, table tennis and Pen&Paper role play games with friends or spend time on one of m various smaller projects.</p>
|
||||||
|
|
||||||
|
<h4>Past stations</h4>
|
||||||
|
<ul>
|
||||||
|
<li>2015: Five months voluntary work in Moshi (Tanzania) at <a href="http://www.tareo-tz.org">TAREO</a></li>
|
||||||
|
<li>2013-2014: Internship at the <a href="https://fsfe.org">Free Software Foundation Europe</a> in Berlin</li>
|
||||||
|
<li>2010-2015: Study at the University of Konstanz</li>
|
||||||
|
<li>2009-2015: First intern and later half-time employee at <a href="http://punkt-computer.de">PUNKT ComputerService</a> in Konstanz</li>
|
||||||
|
</ul>
|
||||||
13
text/contact.de.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<h1>Kontakt</h1>
|
||||||
|
<address>
|
||||||
|
E-Mail Privat: ma<span class="zzz">IGNORE</span>il@me<span class="zzz">THIS</span><span class="y">hl.mx</span><br />
|
||||||
|
E-Mail FSFE: max<span class="zzz">IGNORE</span>.mehl@fs<span class="zzz">THIS</span><span class="y">fe.org</span><br />
|
||||||
|
XMPP: <a href="xmpp:max.mehl@jabber.fsfe.org">max.mehl@jabber.fsfe.org</a><br />
|
||||||
|
IRC: mxmehl@irc.freenode.net in <a href="http://webchat.freenode.net/?channels=#fsfe">#fsfe</a><br />
|
||||||
|
<br />
|
||||||
|
Microblog: <a href="https://twitter.com/mxmehl">twitter.com/mxmehl</a> oder <a href="https://quitter.se/mxmehl">quitter.se/mxmehl</a> (GNU Social)<br />
|
||||||
|
Weblog: <a href="//blog.mehl.mx">blog.mehl.mx</a><br />
|
||||||
|
<br>
|
||||||
|
GnuPG: <a href="//up.mehl.mx/max_mehl-pub.asc">0x549E41E2</a><br />
|
||||||
|
OTR: <a href="//up.mehl.mx/otr.asc">OTR Fingerabdruck</a><br />
|
||||||
|
</address>
|
||||||
13
text/contact.en.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<h1>Contact</h1>
|
||||||
|
<address>
|
||||||
|
E-mail private: ma<span class="zzz">IGNORE</span>il@me<span class="zzz">THIS</span><span class="y">hl.mx</span><br />
|
||||||
|
E-mail FSFE: max<span class="zzz">IGNORE</span>.mehl@fs<span class="zzz">THIS</span><span class="y">fe.org</span><br />
|
||||||
|
XMPP: <a href="xmpp:max.mehl@jabber.fsfe.org">max.mehl@jabber.fsfe.org</a><br />
|
||||||
|
IRC: mxmehl@irc.freenode.net in <a href="http://webchat.freenode.net/?channels=#fsfe">#fsfe</a><br />
|
||||||
|
<br />
|
||||||
|
Microblog: <a href="https://twitter.com/mxmehl">twitter.com/mxmehl</a> or <a href="https://quitter.se/mxmehl">quitter.se/mxmehl</a> (GNU Social)<br />
|
||||||
|
Weblog: <a href="//blog.mehl.mx">blog.mehl.mx</a><br />
|
||||||
|
<br>
|
||||||
|
GnuPG: <a href="//up.mehl.mx/max_mehl-pub.asc">0x549E41E2</a><br />
|
||||||
|
OTR: <a href="//up.mehl.mx/otr.asc">OTR Fingerprints</a><br />
|
||||||
|
</address>
|
||||||
35
text/index-box.de.html
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<!--
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//max.mehl.mx"><img class="box-image" alt="Bild" src="/img/max.png"/></a>
|
||||||
|
<h2><a href="//max.mehl.mx">Private Homepage</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br />
|
||||||
|
<p><a href="//max.mehl.mx">Privat interessiere ich mich sehr für Politik
|
||||||
|
(vor allem Sicherheit, Außen, Netz und Bildung), elektronische und akustische
|
||||||
|
Musik, engagiere mich in der Free Software Foundation Europe und bin Vorstand
|
||||||
|
der Konstanzer Pfadfinder. Auf meinen privaten Seiten schreibe ich etwas über
|
||||||
|
mich und meinen Werdegang.</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
-->
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//it.mehl.mx"><img class="box-image" alt="Bild" src="/img/it.png"/></a>
|
||||||
|
<h2><a href="//it.mehl.mx">IT-Dienstleistungen</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br />
|
||||||
|
<p><a href="//it.mehl.mx">Jeder sollte sich in der heutigen Zeit auf seine
|
||||||
|
Stärken konzentrieren und sich nicht unnötig mit Dingen belasten, die zu viel
|
||||||
|
Einarbeitung benötigen. Daher biete ich seit Herbst 2012 unter meinem Gewerbe
|
||||||
|
diverse Dienstleistungen im IT-Bereich an, um meine Kunden vor unangenehmen
|
||||||
|
Überraschungen und nervenraubenden Problemen zu bewahren.</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//blog.mehl.mx"><img class="box-image" alt="Bild" src="/img/blog.png"/></a>
|
||||||
|
<h2><a href="//blog.mehl.mx">Weblog</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br />
|
||||||
|
<p><a href="//blog.mehl.mx">Freies Wissen hat auch etwas damit zu tun,
|
||||||
|
sein eigenes Wissen weiterzugeben. Ich mache dies zwar bevorzugt auf
|
||||||
|
persönlicher Ebene, aber führe auch einen deutsch- und englischsprachigen Blog.
|
||||||
|
Dort schreibe ich über politische, technische oder gänzlich andere Themen, die
|
||||||
|
mich momentan bewegen oder die ich meinen Lesern gerne näher bringen
|
||||||
|
würde.</a></p>
|
||||||
|
</div>
|
||||||
35
text/index-box.en.html
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<!--
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//max.mehl.mx"><img class="box-image" alt="Picture" src="/img/max.png"/></a>
|
||||||
|
<h2><a href="//max.mehl.mx">Personal Homepage</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br />
|
||||||
|
<p><a href="//max.mehl.mx">I'm very interested in politics (especially
|
||||||
|
security, foreign, net and education) and electronic and acoustic music. I'm
|
||||||
|
involved in the Free Software Foundation Europe and chairman of the scouts group
|
||||||
|
in Konstanz. On my private website you can read something about me and my
|
||||||
|
personal background.</a></p>
|
||||||
|
<p>(German and English)</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
-->
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//it.mehl.mx"><img class="box-image" alt="Picture" src="/img/it.png"/></a>
|
||||||
|
<h2><a href="//it.mehl.mx">IT Services</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br />
|
||||||
|
<p><a href="//it.mehl.mx">Everybody should concentrate on his strenghts and
|
||||||
|
shouldn't bother too much with things which need too much time to work in.
|
||||||
|
Because of this I offer IT services since fall 2012 to protect my clients
|
||||||
|
against unpleasant surprises and annoying problems.</a></p>
|
||||||
|
<p>(German)</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="featured-box">
|
||||||
|
<a href="//blog.mehl.mx"><img class="box-image" alt="Picture" src="/img/blog.png"/></a>
|
||||||
|
<h2><a href="//blog.mehl.mx">Weblog</a></h2>
|
||||||
|
<div class="content-ver-sep"></div><br /> <p><a href="//blog.mehl.mx">Free
|
||||||
|
knowledge also has something to do with relaying his own knowledge. I prefer
|
||||||
|
personal contact for this but I also have a german/english blog. There I write
|
||||||
|
about political, technical or completely different topics that concern me or
|
||||||
|
which I want to bring closer to my readers.</a></p>
|
||||||
|
<p>(Partly German, partly English)</p>
|
||||||
|
</div>
|
||||||
3
text/index-intro.de.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<p>Guten Tag,</p>
|
||||||
|
<p>ich bin Gründer einer IT-Dienstleistungsfirma, studierte Politik- und Verwaltungs-wissenschaft und begeistere mich für Technik, Gesellschaft und Umwelt gleichermaßen.</p>
|
||||||
|
<p>Freie Technik, eine soziale Gesellschaft und der nachhaltige Umgang mit menschlichen und natürlichen Ressourcen spiegeln sich in allen meinen Interessen wieder.</p>
|
||||||
3
text/index-intro.en.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<p>Hello,</p>
|
||||||
|
<p>I founded an IT service company, studied Political and Administrative Science and am enthusiastic about technological, societal and environmental issues alike.</p>
|
||||||
|
<p>Free technology, a fair society and the sustainable handling of human and natural resources are reflected in all my interests.</p>
|
||||||
26
text/links.de.html
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<h1>Links</h1>
|
||||||
|
<p>Links zu von mir verfassten wissenschaftlichen Arbeiten, Projekten und Organisationen mit meiner Mitwirkung und meinen anderen Profilen und Webseiten.</p>
|
||||||
|
|
||||||
|
<h2>Wissenschaftliche Arbeiten</h2>
|
||||||
|
<ul>
|
||||||
|
<li>(2015) Bachelor-Thesis: "Einfluss von Sensationsthemen auf das politische Agenda Setting in sozialen Medien" (<a href="//up.mehl.mx/ba/ba-mehl.pdf">PDF</a> | <a href="//up.mehl.mx/ba/ba-mehl.zip">Daten + R-Code</a>)</li>
|
||||||
|
<li>(2014) "Schon wieder so eine plötzliche Krise?" - Quantitative Analyse der Häufung von Schlagzeilen (<a href="//up.mehl.mx/uni/2014-suprisingnews.zip">PDF + R-Code</a>)</li>
|
||||||
|
<li>(2014) "Das Impressum ist noch keine Selbstverständlichkeit" - Analyse der Einhaltung der deutschen Impressumspflicht (<a href="//up.mehl.mx/uni/2014-impressum.zip">PDF + R-Code</a>)</li>
|
||||||
|
<li>(2013) "Why are the Pirate Parties in Sweden and Germany more successful at elections than in the United Kingdom?" (<a href="//up.mehl.mx/uni/2013-pirateparties.pdf">PDF</a>) (Englisch)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Engagement</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="//it.mehl.mx">Max Mehl IT-Dienstleistungen</a></li>
|
||||||
|
<li><a href="http://www.tareo-tz.org">TAREO - Tanzania Rural Empowerment Organization</a></li>
|
||||||
|
<li><a href="http://pfadfinder-konstanz.de">DPSG Pfadfinder Konstanz</a></li>
|
||||||
|
<li><a href="http://ferienwohnungen-casa-maria.de">Ferienwohnungen Casa Maria</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Webprofile</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://fsfe.org/about/mehl/">Persönliche FSFE Teamseite</a></li>
|
||||||
|
<li><a href="https://www.xing.com/profile/Max_Mehl">XING</a></li>
|
||||||
|
<li><a href="https://twitter.com/mxmehl">Twitter</a></li>
|
||||||
|
<li><a href="https://quitter.se/mxmehl">Quitter (GNU Social)</a></li>
|
||||||
|
</ul>
|
||||||
26
text/links.en.html
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<h1>Links</h1>
|
||||||
|
<p>Links to some of my scientific papers, projects and organisations I work with and other profiles and websites.</p>
|
||||||
|
|
||||||
|
<h2>Scientific Papers</h2>
|
||||||
|
<ul>
|
||||||
|
<li>(2015) Bachelor thesis: "The influence of sensational issues on the political agenda setting in social media" (<a href="//up.mehl.mx/ba/ba-mehl.pdf">PDF</a> | <a href="//up.mehl.mx/ba/ba-mehl.zip">Data + R-Code</a>) (German)</li>
|
||||||
|
<li>(2014) "Once again a surpising crisis?" - Quantitative study of clustering news (<a href="//up.mehl.mx/uni/2014-suprisingnews.zip">PDF + R-Code</a>) (German)</li>
|
||||||
|
<li>(2014) "The imprint is still not taken for granted" - Analysis of compliance with the German imprint requirement (<a href="//up.mehl.mx/uni/2014-impressum.zip">PDF + R-Code</a>) (GErman)</li>
|
||||||
|
<li>(2013) "Why are the Pirate Parties in Sweden and Germany more successful at elections than in the United Kingdom?" (<a href="//up.mehl.mx/uni/2013-pirateparties.pdf">PDF</a>) (English)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Engagement</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="//it.mehl.mx">Max Mehl IT Services</a></li>
|
||||||
|
<li><a href="http://www.tareo-tz.org">TAREO - Tanzania Rural Empowerment Organization</a></li>
|
||||||
|
<li><a href="http://pfadfinder-konstanz.de">DPSG Scouts Konstanz</a></li>
|
||||||
|
<li><a href="http://ferienwohnungen-casa-maria.de">Casa Maria Holiday Apartments</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Web Profiles</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://fsfe.org/about/mehl/">Personal FSFE team page</a></li>
|
||||||
|
<li><a href="https://www.xing.com/profile/Max_Mehl">XING</a></li>
|
||||||
|
<li><a href="https://twitter.com/mxmehl">Twitter</a></li>
|
||||||
|
<li><a href="https://quitter.se/mxmehl">Quitter (GNU Social)</a></li>
|
||||||
|
</ul>
|
||||||