The Chaospott Website [chaospott.de](https://chaospott.de) https://chaospott.de
Go to file
Merlin Raschtuttis 9cf7da701c Added more color-stops to the status graph, now using the right colors 2015-05-04 14:19:44 +02:00
_includes look mom, i'm breaking the page! 2015-04-18 19:52:24 +02:00
_layouts look mom, i'm breaking the page! 2015-04-19 09:07:43 +02:00
_posts Artikel Tür und Freifunk 2015-04-30 18:13:39 +02:00
_sass changed elevator button 2015-04-22 23:26:06 +02: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 ripped out external sources 2014-10-30 20:00:25 +01:00
images added foobar logo 2015-04-20 20:55:44 +02:00
js Create elevator.js 2015-04-22 23:50:42 +02:00
media Artikel Tür und Freifunk 2015-04-30 18:11:31 +02:00
.gitignore logo shrinked 2014-10-27 19:33:42 +01:00
README.md Update README.md 2015-03-25 16:59:21 +01:00
_config.yml Update _config.yml 2014-11-05 21:53:10 +01:00
apple-touch-icon.png added favicons 2015-02-02 17:35:36 +01:00
blog.html Typos 2015-04-23 01:20:01 +02:00
browserconfig.xml added favicons 2015-02-02 17:35:36 +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
index.html fixxed typing error 2015-04-20 20:23:54 +02:00
status.html Added more color-stops to the status graph, now using the right colors 2015-05-04 14:19:44 +02: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)