Skip to content

Commit 3c1e119

Browse files
committed
updating to chirpy v7.1.0
1 parent 555dad3 commit 3c1e119

Some content is hidden

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

68 files changed

+333
-226
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ package-lock.json
1717

1818
# IDE configurations
1919
.idea
20-
.vscode
20+
.vscode/*
21+
!.vscode/settings.json
22+
!.vscode/extensions.json
23+
!.vscode/tasks.json
24+
25+
# Misc
26+
_sass/dist
27+
assets/js/dist
28+
_app
2129

2230
# Link Checker
2331
link-checker.json

Gemfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ source "https://rubygems.org"
44

55
gemspec
66

7-
group :test do
8-
gem "html-proofer", "~> 5.0"
7+
gem "html-proofer", "~> 5.0", group: :test
8+
9+
platforms :mingw, :x64_mingw, :mswin, :jruby do
10+
gem "tzinfo", ">= 1", "< 3"
11+
gem "tzinfo-data"
912
end
13+
14+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

_config.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ analytics:
7070
domain: # fill in your Matomo domain
7171
cloudflare:
7272
id: # fill in your Cloudflare Web Analytics token
73+
fathom:
74+
id: # fill in your Fathom Site ID
7375

74-
# Pageviews settings
76+
# Page views settings
7577
pageviews:
7678
provider: # now only supports 'goatcounter'
7779

@@ -83,8 +85,8 @@ pageviews:
8385
#
8486
# Available options:
8587
#
86-
# light - Use the light color scheme
87-
# dark - Use the dark color scheme
88+
# light Use the light color scheme
89+
# dark Use the dark color scheme
8890
#
8991
theme_mode: # [light | dark]
9092

@@ -106,7 +108,7 @@ social_preview_image: # string, local or CORS resources
106108
toc: true
107109

108110
comments:
109-
# Global switch for the post comment system. Keeping it empty means disabled.
111+
# Global switch for the post-comment system. Keeping it empty means disabled.
110112
provider: utterances # [disqus | utterances | giscus]
111113
# The provider options are as follows:
112114
disqus:
@@ -136,9 +138,9 @@ assets:
136138
env: # [development | production]
137139

138140
pwa:
139-
enabled: true # the option for PWA feature (installable)
141+
enabled: true # The option for PWA feature (installable)
140142
cache:
141-
enabled: false # the option for PWA offline cache
143+
enabled: true # The option for PWA offline cache
142144
# Paths defined here will be excluded from the PWA cache.
143145
# Usually its value is the `baseurl` of another website that
144146
# shares the same domain name as the current website.
@@ -190,10 +192,6 @@ defaults:
190192
values:
191193
layout: page
192194
permalink: /:title/
193-
- scope:
194-
path: assets/js/dist
195-
values:
196-
swcache: true
197195

198196
sass:
199197
style: compressed

_data/contact.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,17 @@
2424
url: "https://www.linkedin.com/in/joshua-johanning/" # Fill with your Linkedin homepage
2525
#
2626
# - type: stack-overflow
27-
# icon: "fab fa-stack-overflow"
28-
# url: "" # Fill with your stackoverflow homepage
27+
# icon: 'fab fa-stack-overflow'
28+
# url: '' # Fill with your stackoverflow homepage
29+
#
30+
# - type: bluesky
31+
# icon: 'fa-brands fa-bluesky'
32+
# url: '' # Fill with your Bluesky profile link
33+
#
34+
# - type: reddit
35+
# icon: 'fa-brands fa-reddit'
36+
# url: '' # Fill with your Reddit profile link
37+
#
38+
# - type: threads
39+
# icon: 'fa-brands fa-threads'
40+
# url: '' # Fill with your Threads profile link

_data/locales/ar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: باستخدام :PLATFORM السمة :THEME
4444

4545
not_found:
46-
statment: عذرا, الرابط التالي غير صالح أو انه يشير إلى صفحة غير موجودة.
46+
statement: عذرا, الرابط التالي غير صالح أو انه يشير إلى صفحة غير موجودة.
4747

4848
notification:
4949
update_found: يتوفر اصدار جديد للمحتوى.

_data/locales/bg-BG.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Създадено чрез :PLATFORM и :THEME тема
4444

4545
not_found:
46-
statment: Съжалявам, но на този URL адрес няма налично съдържание.
46+
statement: Съжалявам, но на този URL адрес няма налично съдържание.
4747

4848
notification:
4949
update_found: Налична е нова версия на съдържанието.

_data/locales/cs-CZ.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Použití :PLATFORM s motivem :THEME
4444

4545
not_found:
46-
statment: Omlouváme se, adresu URL jsme špatně umístili nebo odkazuje na něco, co neexistuje.
46+
statement: Omlouváme se, adresu URL jsme špatně umístili nebo odkazuje na něco, co neexistuje.
4747

4848
notification:
4949
update_found: Je k dispozici nová verze obsahu.

_data/locales/de-DE.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: Powered by :PLATFORM with :THEME theme
4343

4444
not_found:
45-
statment: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource.
45+
statement: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource.
4646

4747
notification:
4848
update_found: Eine neue Version ist verfügbar.
@@ -76,7 +76,7 @@ df:
7676
post:
7777
strftime: "%d.%m.%Y"
7878
dayjs: "DD.MM.YYYY"
79-
79+
8080
# categories page
8181
categories:
8282
category_measure:

_data/locales/el-GR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Αξιοποιώντας την :PLATFORM theme :THEME
4444

4545
not_found:
46-
statment: Συγνώμη, έχουμε τοποθετήσει λάθος αυτήν την διεύθυνση URL ή υποδεικνύει κάτι που δεν υπάρχει.
46+
statement: Συγνώμη, έχουμε τοποθετήσει λάθος αυτήν την διεύθυνση URL ή υποδεικνύει κάτι που δεν υπάρχει.
4747

4848
notification:
4949
update_found: Υπάρχει διαθέσιμη μια νέα έκδοση του περιεχομένου.

_data/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Using the :THEME theme for :PLATFORM.
4444

4545
not_found:
46-
statment: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
46+
statement: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
4747

4848
notification:
4949
update_found: A new version of content is available.

0 commit comments

Comments
 (0)