arc42.de Website
Live site is hosted by GitHub Pages, built by GitHub Actions
with this repo's own Jekyll 4.3 gems (not the GitHub Pages gem set) — see .github/workflows/.
Uptime stats by UptimeRobot.
The site is build and created with Jekyll and Markdown. It uses the MinimalMistakes template, with a few slight modifications
- home.md is the homepage, it's mapped (via permalink) to "/".
- Most content is organized in markdown files under the
_pagesdirectory (a convention from Jekyll).
Prerequisite: local builds run in Docker. You need Docker installed, nothing else — no local Ruby, no local gems.
The build stack is shared with arc42.org-site: both repos build the same
image, arc42-site:latest (see Dockerfile / docker-compose.yml), on
Jekyll 4.3 with the gems pinned in this repo's Gemfile. Keep Gemfile and
Gemfile.lock identical in both repos — when you change one, change the other,
otherwise the two sites drift onto different Jekyll/kramdown versions and start
rendering the same Markdown differently. Production is built by GitHub Actions
from those same gems, not by the GitHub Pages gem set.
Start the dev server:
make devServes the site on http://localhost:4043 (not 0.0.0.0:4043 — Firefox refuses
that host) and rebuilds on every file change. The first run builds the image; on
later runs it starts from the cache.
All useful targets (make on its own prints this list):
make dev— start Jekyll locally with live reload on port 4043make build— build/rebuild the Docker imagearc42-site:latestfrom the pinned gemsmake site— generate the static site into_site/(one-shot build, no server)make check-links— run html-proofer over the built_site(internal links, images, HTML)make test-theme— build and assert the generated_siteis structurally sound (see below)make stop— stop and remove the running dev containermake clean— remove_siteand the Docker cache volumes (a true reset)make install/make update— re-runbundle install/bundle updatein the image after editing theGemfilemake shell— open a shell inside the containermake logs— tail the dev container's logs
Run this after changing theme files, layouts, permalinks, or Jekyll configuration:
make test-themeIt builds the site inside the container and then asserts things html-proofer does
not look at. It fails if the Jekyll log shows a remote-theme fetch or a missing
Liquid include/layout, or if representative generated pages are absent —
_site/index.html, _site/overview/index.html, _site/termine/index.html,
_site/anmeldung/index.html, _site/about/index.html, _site/articles/index.html,
_site/recommendations/index.html, _site/gallery/index.html,
_site/videos/index.html, _site/publikationen/index.html,
_site/publikationen/arc42-in-aktion/index.html, _site/sitemap.xml.
Internal page routes use directory-style URLs with trailing slashes, for example
permalink: /imprint/ and links such as /imprint/. This keeps local Jekyll
development, GitHub Actions, and generated links aligned. make test-theme also
fails if a change reintroduces top-level name.html page output, generated
internal links without the trailing slash, stale sitemap URLs, or same-site
navigation links pointing at 0.0.0.0, www.arc42.de, or absolute
https://arc42.de/... anchors.
The site vendors Minimal Mistakes 4.24.0 locally instead of using remote_theme. To update the theme later:
- Download the exact upstream Minimal Mistakes release you want to use.
- Copy upstream additions into
_layouts,_includes,_sass,_data, andassets/js. - Preserve local overrides such as
_includes/head.html,_includes/masthead.html,_includes/footer.html, custom timeline includes, custom feature-row includes, andassets/css/main.scss. - Run
make clean && make test-theme, then smoke-check/,/overview/,/termine/,/anmeldung/,/about/,/publikationen/,/gallery/, and/search/.
- The timeline (in
/termine/) is based upon w3schools- We configure the timeline with yaml.
- Some buttons are also based upon w3schools definition.
Custom css is located in /assets/css, the required import statement in /assets/css/main.scss
We use formspark.io as backend provider for our "Anmeldung".
For spam protection within the form, we use Botpoison, see especially their getting started with HTML article:
1.Import the @botpoison/browser script.
2. Add your public key to the data-botpoison-public-key attribute.
3. The solution will automatically be attached to the submission (as the _botpoison field).
A botpoison browser script is required for spam-protection in the Anmeldung-Form, see https://documentation.formspark.io/setup/spam-protection.html#botpoison
We make this a page-specific asset (see https://www.instapaper.com/read/1436398846)
by adding the following yaml to anmeldung.md:
---
title: "Anmeldung"
layout: single
permalink: /anmeldung/
botpoison: nospam
---
And then adding the appropriate import statement in _includes/head/custom.html:
{% if page.botpoison %}
<!-- 1. Import the @botpoison/browser script -->
<script src="https://unpkg.com/@botpoison/browser"></script>
{% endif %}
- Create the Botpoison publik and secret keys, as explained in Botpoison setup guide
- In your form's settings, select Botpoison under Spam Protection.
- Copy the secret key, paste it into the Botpoison secret key field in the Formspark form configuration
- Add the Botpoison public key to the HTML of the form:
<form
method="POST"
action="https://submit-form.com/your-form-id"
data-botpoison-public-key="your-botpoison-public-key"
target="_blank"
>
In our concrete case, that looks as follows (file _pages/anmeldung.md)
<form action="https://submit-form.com/AIKiYyJP"
data-botpoison-public-key="pk_8e195655-38ed-4eec-a445-a1e0d68a488d">
Formating of the email sent from formspark.io to arc42 is done via handlebar configuration within the Formspark.io website.
<div style="text-align: left;">
<strong>Neue Anmeldung (über arc42):</strong><br>
{{data.vorname}} {{data.nachname}} ({{data.email}}) hat<br>
<div style="margin: 16px 0;">
{{#if data.nachnameTN}}
<h3>{{data.vornameTN}} {{data.nachnameTN}} ({{data.emailTN}})</h3>
{{else}}
<h3>sich selbst</h3>
{{/if}}
<br>
für den Kurs {{data.kursdatum}} angemeldet.
</div>
<br>
Rechnungsadresse: <br>
<div style="margin: 16px 0;">
{{data.Rechnungsadresse}} <br>
</div>
<br>
Bemerkung:<br>
<div style="margin: 16px 0;">
{{data.comment}}
</div>
<br>
</div>
As often, StackOverflow had an answer,
we combine a <noscript> tag with a <div> and a small JavaScript function:
<body>
<div id="main_body" style="display: none;">
all content - not displayed...
</div>
</body>
Plus a small JavaScript function to enable the content again...
<script type="text/javascript">
document.getElementById("main_body").style.display="block";
</script>
It does NOT work if users disable JavaScript when already on the form...
The /termine/ page uses a modular timeline system for easy course management:
Edit the courses: array in _pages/termine.md front matter:
courses:
- type: "msa" # Course type: msa, msa_online, req4arc, improve, adoc
date: "2.-5. Dezember 2025" # Course dates
location: "München" # Location (omit for online courses)
anchor_id: "msa-dec-2025" # Unique ID for deep linking
sold_out: true # Optional: marks course as sold out
few_seats: "Nur noch wenige Plätze verfügbar" # Optional: warning for limited availability
pricing: "Frühbucherpreis: €2690" # Optional: custom pricing textCAREFUL: This configuration is based upon YAML, and is therefore sensitive to spaces and tabs. Ensure you use EXACTLY four spaces for indentation. Otherwise you will waste precious lifetime debugging yaml.
Each course gets a unique anchor: https://arc42.de/termine/#msa-dec-2025
msa- German MSA courses (in-person)msa_online- English MSA courses (online, Wolfgang Reimesch)req4arc- REQ4ARC coursesimprove- IMPROVE coursesadoc- ADOC courses
The system automatically handles left/right timeline positioning and consistent formatting.
Thanx to Michael Rose, creator of the Minimal-Mistakes Jekyll Theme, follow him on Twitter.
- Free images can be found at Unsplash
- I generated the various favicon files with RealFavIconGenerator.
The arc42 template is licensed under a CreativeCommons Sharealike International 4.0 License.
You are free to:
- Share — copy and redistribute the template in any medium or format
- Adapt — remix, transform, and build upon the material for any purpose, even commercially.
Copyright (c) 2016ff Michael Rose
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.