Initial commit
This commit is contained in:
commit
14f5d498a9
13 changed files with 248 additions and 0 deletions
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.DS_Store
|
||||||
|
_site
|
||||||
|
.jekyll-assets-cache
|
||||||
|
_drafts
|
||||||
|
*~
|
||||||
|
*.swp
|
||||||
|
*.swo
|
3
Gemfile
Normal file
3
Gemfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'jekyll', '~> 2.5.3'
|
70
Gemfile.lock
Normal file
70
Gemfile.lock
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
blankslate (2.1.2.4)
|
||||||
|
celluloid (0.16.0)
|
||||||
|
timers (~> 4.0.0)
|
||||||
|
classifier-reborn (2.0.3)
|
||||||
|
fast-stemmer (~> 1.0)
|
||||||
|
coffee-script (2.3.0)
|
||||||
|
coffee-script-source
|
||||||
|
execjs
|
||||||
|
coffee-script-source (1.8.0)
|
||||||
|
colorator (0.1)
|
||||||
|
execjs (2.2.2)
|
||||||
|
fast-stemmer (1.0.2)
|
||||||
|
ffi (1.9.6)
|
||||||
|
hitimes (1.2.2)
|
||||||
|
jekyll (2.5.3)
|
||||||
|
classifier-reborn (~> 2.0)
|
||||||
|
colorator (~> 0.1)
|
||||||
|
jekyll-coffeescript (~> 1.0)
|
||||||
|
jekyll-gist (~> 1.0)
|
||||||
|
jekyll-paginate (~> 1.0)
|
||||||
|
jekyll-sass-converter (~> 1.0)
|
||||||
|
jekyll-watch (~> 1.1)
|
||||||
|
kramdown (~> 1.3)
|
||||||
|
liquid (~> 2.6.1)
|
||||||
|
mercenary (~> 0.3.3)
|
||||||
|
pygments.rb (~> 0.6.0)
|
||||||
|
redcarpet (~> 3.1)
|
||||||
|
safe_yaml (~> 1.0)
|
||||||
|
toml (~> 0.1.0)
|
||||||
|
jekyll-coffeescript (1.0.1)
|
||||||
|
coffee-script (~> 2.2)
|
||||||
|
jekyll-gist (1.1.0)
|
||||||
|
jekyll-paginate (1.1.0)
|
||||||
|
jekyll-sass-converter (1.3.0)
|
||||||
|
sass (~> 3.2)
|
||||||
|
jekyll-watch (1.2.0)
|
||||||
|
listen (~> 2.7)
|
||||||
|
kramdown (1.5.0)
|
||||||
|
liquid (2.6.1)
|
||||||
|
listen (2.8.5)
|
||||||
|
celluloid (>= 0.15.2)
|
||||||
|
rb-fsevent (>= 0.9.3)
|
||||||
|
rb-inotify (>= 0.9)
|
||||||
|
mercenary (0.3.5)
|
||||||
|
parslet (1.5.0)
|
||||||
|
blankslate (~> 2.0)
|
||||||
|
posix-spawn (0.3.9)
|
||||||
|
pygments.rb (0.6.0)
|
||||||
|
posix-spawn (~> 0.3.6)
|
||||||
|
yajl-ruby (~> 1.1.0)
|
||||||
|
rb-fsevent (0.9.4)
|
||||||
|
rb-inotify (0.9.5)
|
||||||
|
ffi (>= 0.5.0)
|
||||||
|
redcarpet (3.2.2)
|
||||||
|
safe_yaml (1.0.4)
|
||||||
|
sass (3.4.9)
|
||||||
|
timers (4.0.1)
|
||||||
|
hitimes
|
||||||
|
toml (0.1.2)
|
||||||
|
parslet (~> 1.5.0)
|
||||||
|
yajl-ruby (1.1.0)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
jekyll (~> 2.5.3)
|
22
Makefile
Normal file
22
Makefile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
all: compile compress upload
|
||||||
|
|
||||||
|
compile: clean
|
||||||
|
@echo "=== Generating static files"
|
||||||
|
@bundle exec jekyll build
|
||||||
|
@echo "Done."
|
||||||
|
|
||||||
|
compress:
|
||||||
|
@echo "=== Compressing generated files"
|
||||||
|
@find ./_site -type f | xargs gzip -k -9
|
||||||
|
@echo "Done."
|
||||||
|
|
||||||
|
upload:
|
||||||
|
@echo "=== Syncing files"
|
||||||
|
@rsync -avz --no-o --no-g -e ssh --chmod=og=r -p --delete _site/ webserver.kempkens.io:/var/www/main
|
||||||
|
@echo "Done."
|
||||||
|
@echo "=== Changing permissions"
|
||||||
|
@ssh webserver.kempkens.io chown -R www:www /var/www/main
|
||||||
|
@echo "Done."
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -rf ./_site
|
12
_config.yml
Normal file
12
_config.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# Permalinks
|
||||||
|
permalink: /:categories/:title/
|
||||||
|
relative_permalinks: true
|
||||||
|
|
||||||
|
# Setup
|
||||||
|
title: kempkens.io
|
||||||
|
tagline: Anwendungsentwickler
|
||||||
|
url: https://kempkens.io
|
||||||
|
baseurl: /
|
||||||
|
|
||||||
|
include: [".htaccess"]
|
||||||
|
exclude: ["tmp", "Gemfile", "Gemfile.lock", "Makefile"]
|
16
_includes/analytics.html
Normal file
16
_includes/analytics.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<script type="text/javascript">
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var host = window.location.hostname;
|
||||||
|
|
||||||
|
if (host !== 'localhost' && host !== '127.0.0.1') { // No tracking on localhost
|
||||||
|
ga('create', 'UA-28082386-2', host);
|
||||||
|
ga('set', 'anonymizeIp', true);
|
||||||
|
ga('send', 'pageview');
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
</script>
|
13
_includes/head.html
Normal file
13
_includes/head.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<head>
|
||||||
|
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
|
||||||
|
<!-- Enable responsiveness on mobile devices-->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||||
|
|
||||||
|
<title>{{ site.title }}</title>
|
||||||
|
|
||||||
|
<!-- CSS -->
|
||||||
|
<link rel="stylesheet" href="{{ "public/css/style.css" | prepend: site.baseurl }}">
|
||||||
|
</head>
|
11
_layouts/default.html
Normal file
11
_layouts/default.html
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
{% include analytics.html %}
|
||||||
|
</body>
|
||||||
|
</html>
|
29
impressum.txt
Normal file
29
impressum.txt
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
layout: null
|
||||||
|
---
|
||||||
|
Impressum
|
||||||
|
|
||||||
|
Daniel Kempkens
|
||||||
|
Kugelsberger Weg 6
|
||||||
|
41849 Wassenberg
|
||||||
|
|
||||||
|
Email: daniel+website@kempkens.io
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
German law demands the following statements, too.
|
||||||
|
|
||||||
|
Datenschutzerklärung
|
||||||
|
|
||||||
|
Die Nutzung unserer Webseite ist in der Regel ohne Angabe personenbezogener Daten möglich. Soweit auf unseren Seiten personenbezogene Daten (beispielsweise Name, Anschrift oder eMail-Adressen) erhoben werden, erfolgt dies, soweit möglich, stets auf freiwilliger Basis.
|
||||||
|
|
||||||
|
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. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-Mails, vor.
|
||||||
|
|
||||||
|
|
||||||
|
Google Analytics
|
||||||
|
|
||||||
|
Diese Website benutzt Google Analytics, einen Webanalysedienst der Google Inc. (“Google”). Google Analytics verwendet sog. “Cookies”, Textdateien, die auf Ihrem Computer gespeichert werden und die eine Analyse der Benutzung der Website durch Sie ermöglichen. Die durch den Cookie erzeugten Informationen über Ihre Benutzung dieser Website werden in der Regel an einen Server von Google in den USA übertragen und dort gespeichert. Im Falle der Aktivierung der IP-Anonymisierung auf dieser Webseite wird Ihre IP-Adresse von Google jedoch innerhalb von Mitgliedstaaten der Europäischen Union oder in anderen Vertragsstaaten des Abkommens über den Europäischen Wirtschaftsraum zuvor gekürzt.
|
||||||
|
|
||||||
|
Nur in Ausnahmefällen wird die volle IP-Adresse an einen Server von Google in den USA übertragen und dort gekürzt. Im Auftrag des Betreibers dieser Website wird Google diese Informationen benutzen, um Ihre Nutzung der Website auszuwerten, um Reports über die Websiteaktivitäten zusammenzustellen und um weitere mit der Websitenutzung und der Internetnutzung verbundene Dienstleistungen gegenüber dem Websitebetreiber zu erbringen. Die im Rahmen von Google Analytics von Ihrem Browser übermittelte IP-Adresse wird nicht mit anderen Daten von Google zusammengeführt.
|
||||||
|
|
||||||
|
Sie können die Speicherung der Cookies durch eine entsprechende Einstellung Ihrer Browser-Software verhindern; wir weisen Sie jedoch darauf hin, dass Sie in diesem Fall gegebenenfalls nicht sämtliche Funktionen dieser Website vollumfänglich werden nutzen können. Sie können darüber hinaus die Erfassung der durch das Cookie erzeugten und auf Ihre Nutzung der Website bezogenen Daten (inkl. Ihrer IP-Adresse) an Google sowie die Verarbeitung dieser Daten durch Google verhindern, indem sie das unter dem folgenden Link verfügbare Browser-Plugin herunterladen und installieren: http://tools.google.com/dlpage/gaoptout?hl=de.
|
14
index.html
Normal file
14
index.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
<div class="about">
|
||||||
|
<h1>Daniel Kempkens</h1>
|
||||||
|
<p>Anwendungsentwickler</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://blog.kempkens.io">Blog</a></li>
|
||||||
|
<li><a href="https://github.com/nifoc">GitHub</a></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="extra">
|
||||||
|
<li><a href="/impressum.txt">Impressum</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
46
public/css/style.css
Normal file
46
public/css/style.css
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background: url(../images/background.png) #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20px;
|
||||||
|
right: 20px;
|
||||||
|
border-right: 5px solid #333;
|
||||||
|
padding-right: 10px;
|
||||||
|
text-align: right;
|
||||||
|
text-shadow: 1px 1px 6px rgba(110, 110, 110, 0.6);
|
||||||
|
color: #333;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about a {
|
||||||
|
color: #333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about ul {
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about li {
|
||||||
|
display: inline;
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about li:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about ul.extra {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
BIN
public/images/background.png
Normal file
BIN
public/images/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
5
robots.txt
Normal file
5
robots.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
layout: null
|
||||||
|
---
|
||||||
|
User-agent: *
|
||||||
|
Allow: /
|
Loading…
Reference in a new issue