The Chaospott Website [chaospott.de](https://chaospott.de) https://chaospott.de
Go to file
gidsi f395eefb2a fix status link 2018-06-16 03:47:03 +02:00
.circleci adds circleci build 2018-06-03 22:25:24 +02:00
.well-known/autoconfig/mail adds thunderbird autoconfig 2016-01-31 19:40:12 +01:00
_includes fix status link 2018-06-16 03:47:03 +02:00
_layouts look mom, i'm breaking the page! 2015-04-19 09:07:43 +02:00
_posts blogpost petit foo oszi 2018-06-11 12:23:57 +02:00
_sass the div is centered 2018-01-19 15:29:27 -05: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 styles for calendar 2018-01-19 14:12:13 -05: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 calendar files 2018-01-19 13:08:11 -05:00
media removed legal files which can be found at documents.chaospott.de 2018-06-16 00:13:56 +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
Dockerfile move dockerfile to root 2018-06-03 22:30:33 +02: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 include should now be an array 2017-11-17 16:19:21 +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
calendar.html Links on main page and design fix 2018-01-19 15:37:40 -05: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 Vorstand im Impressum aktualisiert 2017-11-06 21:13:56 +01:00
index.html fixed link 2017-09-02 15:35:45 +02:00
status.html Status Logic fixed... 2018-04-23 18:05:21 +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)