Skip to content

Commit 518d545

Browse files
authored
Merge pull request #6 from CoderDojoPotsdam/refactor
Code Revision
2 parents 985cdaf + 8764524 commit 518d545

82 files changed

Lines changed: 93 additions & 1928 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/issue_template.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
ruby-version: '3.3'
1212
- name: Install dependencies
13-
run: bundle install && bundle exec appraisal install
13+
run: bundle install
1414
- name: Setup Pages
1515
id: configure-pages
1616
uses: actions/configure-pages@v5
@@ -21,6 +21,6 @@ jobs:
2121
- name: Build site
2222
env:
2323
JEKYLL_ENV: production
24-
run: bundle exec appraisal jekyll build --future --config _config_ci.yml,_config.yml
24+
run: bundle exec jekyll build --future --config _config_ci.yml,_config.yml
2525
- name: Upload artifact
2626
uses: actions/upload-pages-artifact@v3

Appraisals

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 236 deletions
This file was deleted.

Gemfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22

33
source "https://rubygems.org"
44

5-
gemspec
6-
5+
gem "jekyll", ">= 3.9.3"
6+
gem "jekyll-paginate", "~> 1.1"
7+
gem "jekyll-sitemap", "~> 1.4"
8+
gem "kramdown-parser-gfm", "~> 1.1"
9+
gem "kramdown", "~> 2.3"
10+
gem "webrick", "~> 1.8"

_config.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ navbar-links:
2323
FAQ: "faq"
2424
Material: "material"
2525
Eindrücke: "eindruecke"
26-
# Resources:
27-
# - Beautiful Jekyll: "https://beautifuljekyll.com"
28-
# - Learn markdown: "https://www.markdowntutorial.com/"
29-
# Author's home: "https://deanattali.com"
3026

3127
################
3228
# --- Logo --- #
@@ -83,17 +79,17 @@ social-network-links:
8379

8480
# If you want your website to generate an RSS feed, provide a description
8581
# The URL for the feed will be https://<your_website>/feed.xml
86-
rss-description: This website is a virtual proof that I'm awesome
82+
rss-description: Aktuelle Termine und News des CoderDojo Potsdam
8783

8884
###########################
8985
# --- General options --- #
9086
###########################
9187

9288
# Select which social network share links to show in posts
9389
share-links-active:
94-
twitter: true
95-
facebook: true
96-
linkedin: true
90+
twitter: false
91+
facebook: false
92+
linkedin: false
9793
vk: false
9894

9995
# How to display the link to your website in the footer
@@ -253,7 +249,7 @@ date_format: "%B %-d, %Y"
253249
#################################################################################
254250

255251
# Output options (more information on Jekyll's site)
256-
timezone: "America/Toronto"
252+
timezone: "Europe/Berlin"
257253
markdown: kramdown
258254
highlighter: rouge
259255
permalink: /:year-:month-:day-:title/
@@ -292,7 +288,3 @@ exclude:
292288
plugins:
293289
- jekyll-paginate
294290
- jekyll-sitemap
295-
296-
# Beautiful Jekyll / Dean Attali
297-
# 2fc73a3a967e97599c9763d05e564189
298-

0 commit comments

Comments
 (0)