diff --git a/Dockerfile b/Dockerfile index a97cd24..c33e5d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ from jekyll/jekyll as builder add . /srv/jekyll -run mkdir /site -run whoami run jekyll build --source /srv/jekyll --destination /tmp from nginx:alpine diff --git a/Gemfile b/Gemfile index f478b6b..8da55a7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ source 'https://rubygems.org' gem 'jekyll', '~>3.8.4' +gem 'jekyll-paginate' diff --git a/_config.yml b/_config.yml index a5b545c..6bcb8da 100644 --- a/_config.yml +++ b/_config.yml @@ -1,16 +1,17 @@ # Site settings title: chaospott - wir sind da wat am hacken dran... email: info@chaospott.de -description: > +description: > Wir sind der örtliche Erfa-Kreis des Chaos Computer Clubs in Essen. Unsere Gesprächsthemen und Projekte reichen von Soft- und Hardware zu Datenschutz und Netzpolitik. Alle Interessierten sind herzlich zu unserem Treff eingeladen. -baseurl: "" +baseurl: "" url: "https://chaospott.de" # Build settings markdown: kramdown permalink: /:year/:month/:day/:title paginate: 5 paginate_path: "/blog/:num" +plugins: [jekyll-paginate] include: [ ".well-known" ]