The Chaospott Website [chaospott.de](https://chaospott.de) https://chaospott.de
Go to file
Christian 74d70290e2 fixed missing md syntax 2017-08-04 09:38:50 +02:00
.well-known/autoconfig/mail adds thunderbird autoconfig 2016-01-31 19:40:12 +01:00
_includes Added vertical divider to the menu 2017-04-16 13:32:44 +02:00
_layouts look mom, i'm breaking the page! 2015-04-19 09:07:43 +02:00
_posts fixed missing md syntax 2017-08-04 09:38:50 +02:00
_sass Reverted color to original 2017-06-13 22:07:22 +02:00
blog made elevator.js slower again 2016-01-14 00:39:52 +01:00
bootstrap Update bootstrap.css 2015-02-20 19:16:06 +01:00
css look mom, i'm breaking the page! 2015-04-18 19:16:06 +02:00
favicon look mom, i'm breaking the page! 2015-04-18 19:16:06 +02:00
fonts Nur ein Tropfen auf den heißen Stein 2016-03-08 23:42:10 +01:00
images added foobar logo 2015-04-20 20:55:44 +02:00
js added link to blogpost to blog headline, also some cleaning, we cant have more than 4 navigation points 2015-10-17 21:24:11 +02:00
media ADD OSM-Treffen 2017-08-04 09:37:29 +02:00
.gitignore fixed typos 2016-10-13 15:20:49 +02:00
.ruby-version Gemfile und rbenv environment file hinzugefügt. 2016-03-09 23:16:19 +01:00
Gemfile Gemfile und rbenv environment file hinzugefügt. 2016-03-09 23:16:19 +01:00
README.md Update README.md 2015-09-13 20:57:01 +02:00
_config.yml adds .well-known to jekyll folder 2016-01-31 19:48:29 +01:00
apple-touch-icon.png added favicons 2015-02-02 17:35:36 +01:00
browserconfig.xml added favicons 2015-02-02 17:35:36 +01:00
datenschutzerklaerung.md Datenschutzerklärung hinzugefügt. Dem Impressum abschließendes Newline hinzugefügt. 2016-03-09 23:19:19 +01:00
favicon-16x16.png added favicons 2015-02-02 17:35:36 +01:00
favicon-32x32.png added favicons 2015-02-02 17:35:36 +01:00
favicon-96x96.png added favicons 2015-02-02 17:35:36 +01:00
favicon.ico reverted the favicon 2015-02-02 17:46:41 +01:00
feed.xml 2014-10-20 22:33:40 +02:00
impressum.md Formatierung im Impressum. 2016-03-15 17:54:33 +01:00
index.html added link to blogpost to blog headline, also some cleaning, we cant have more than 4 navigation points 2015-10-17 21:24:11 +02:00
status.html Update status.html / responsive <svg> 2016-12-25 23:47:49 +01:00

README.md

site

==

Chaospott Seite / Blog

jekyll + bootstrap

Blogeinträge

Text

Blogeinträge werden in dem Verzeichnis „_posts“ abgelegt. Um einen Blogeintrag zu verfassen legt man eine Datei mit dem Schema „Jahr-MM-TT-Titel.markdown“ an. Der Blogeintrag beginnt mit folgenden Metadaten:

---
layout: post
title: "Neues Update für DocPatch"
date: 2015-05-23 13:37:00
categories: docpatch
---

Damit wird der Titel des Blogeintrags, das Datum der Veröffentlichung und die Kategorie (optional) festgelegt.

Bilder

Bilder für Blogeinträge werden unterhalb von Media in einem eigenen Verzeichnis (Jahr-MM-TT) abgelegt.

~/site/media/jahr-mm-tt

Als erstes sollte man die Exif-Daten (z.B. Geoinformation) der Bilder entfernen.

Als erstes werden alle relevanten Metadaten entfernt. Dabei wird auch die „Rotation“ des Bildes entfernt.

exiftool -all= $Bild

Ggf. muss das Bild gedreht werden, wenn es ohne die Metatags auf dem Kopf steht oder auf der Seite liegt.

Der letzte Schritt setzt die Bilder auf eine einheitliche Breite.

mogrify -resize "1140>" $Bild

Wenn das Bild in der korrekten Größe und Ausrichtung vorliegt, kann es wie Folgt eingebunden werden.

![Quelle: Chaospott]({{ site.url }}/media/Jahr-MM-TT/$Bild.jpg)