The Chaospott Website [chaospott.de](https://chaospott.de) https://chaospott.de
Go to file
Timm 51eabd7642 wops, missed a line. 2015-04-17 20:29:23 +02:00
_includes Update footer.html 2015-04-16 00:18:14 +02:00
_layouts changed logo and fixed status 2014-11-04 00:40:10 +01:00
_posts Zusätzliche Infos 2015-04-10 14:43:45 +02:00
_sass Design and Jekyll added 2014-10-26 14:11:10 +01:00
bootstrap Update bootstrap.css 2015-02-20 19:16:06 +01:00
css changed teaser picture 2015-04-02 21:01:27 +02:00
fonts ripped out external sources 2014-10-30 20:00:25 +01:00
images fixed high cpu consumption on mobile devices 2015-01-25 20:03:38 +01:00
js added moment.js 2015-03-17 23:22:53 +01:00
media ADD Post EH15 2015-04-08 17:08:00 +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
android-chrome-36x36.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-48x48.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-72x72.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-96x96.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-144x144.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-192x192.png added favicons 2015-02-02 17:35:36 +01:00
android-chrome-manifest.json added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-57x57.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-60x60.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-72x72.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-76x76.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-114x114.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-120x120.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-144x144.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-152x152.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-180x180.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon-precomposed.png added favicons 2015-02-02 17:35:36 +01:00
apple-touch-icon.png added favicons 2015-02-02 17:35:36 +01:00
blog.html fixed blogpage 2014-11-04 01:58:48 +01: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 ÜBER UNS bearbeitet 2015-04-13 17:42:17 +02:00
mstile-70x70.png added favicons 2015-02-02 17:35:36 +01:00
mstile-144x144.png added favicons 2015-02-02 17:35:36 +01:00
mstile-150x150.png added favicons 2015-02-02 17:35:36 +01:00
mstile-310x150.png added favicons 2015-02-02 17:35:36 +01:00
mstile-310x310.png added favicons 2015-02-02 17:35:36 +01:00
status.html wops, missed a line. 2015-04-17 20:29:23 +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)