The Site is created with a static site generator Jekyll and hosted on Github.
You can change and add content via the webinterface at Github or download and install it (see System Preparation)
A starter project including full setup for Jekyll, GulpJS, SASS, AutoPrefixer & BrowserSync
This site uses Markdown, a very simple and easy way to write structured content with headlines, paragraphs, images etc.
This site distiguishs between pages for static longterm content (currently only reflected in the topnavigation) and posts for news, announcements and short public notices (shown in different categories on the homepage).
All pages (except homepage) are stored
in the folder pages
.
There you can open for example the file about.md
by clicking on the pen-icon (on the right corner at the [file](link to github webview of about.md)) and make your changes after the so called frontmatter(everything between the ---
at the beginning of the file. please do not change this unless you know what you do)
When you finished your changes please write a short notice in the commit-message form below the file and commit your changes.
All posts a stored in the _posts
folder. Changing the post a the same procedure as described in [Change a page](#Change a page)
Just include into your page/post markdown file:

-
To add an own image to a post or page you have to upload it first. Got to the
./assets/
folder and use theupload
-Button on the right top of the editor. -
Then go to the page or post markdown file (e.g.
about.md
) and link the path to the image like so:
Example

To use this starter project, you'll need the following things installed on your machine.
- Jekyll -
$ gem install jekyll
- NodeJS - use the installer or even better NVM (Node Version Manager).
- GulpJS -
$ npm install -g gulp
(mac users may need sudo)
Addtionally it's recommended to install Git
- Clone this repo, or download it into a directory of your choice.
- Inside the directory, run
npm install
.
development mode
This will give you file watching, browser synchronisation, auto-rebuild, CSS injecting etc etc.
$ gulp
jekyll
As this is just a Jekyll project, you can use any of the commands listed in their docs
You can easily deploy your site build to a gh-pages branch. First, follow the instructions at gulp-gh-pages to get your branch prepared for the deployment and to install the module. Then, in gulpfile.js
you'll want to include something like the code below. gulp.src()
needs to be the path to your final site folder, which by default will be _site
. If you change the destination
in your _config.yml
file, be sure to reflect that in your gulpfile.
var deploy = require("gulp-gh-pages");
gulp.task("deploy", ["jekyll-build"], function () {
return gulp.src("./_site/**/*")
.pipe(deploy());
});
- better sitemap support (priority/images) (x)
- minifiction, uncss, etc (x)
- image optimization (x)
- improve json-ld support for events and albums, tracks (partially done or prepared)(o)