add mastodon_webfinger
This commit is contained in:
parent
f17f410bf1
commit
c68ed6162b
3 changed files with 26 additions and 16 deletions
2
Gemfile
2
Gemfile
|
@ -7,3 +7,5 @@ group :jekyll_plugins do
|
||||||
gem 'jekyll-sitemap'
|
gem 'jekyll-sitemap'
|
||||||
gem 'jekyll-paginate'
|
gem 'jekyll-paginate'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
gem "jekyll-mastodon_webfinger", "~> 1.0"
|
19
Gemfile.lock
19
Gemfile.lock
|
@ -1,19 +1,19 @@
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
addressable (2.8.1)
|
addressable (2.8.4)
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
colorator (1.1.0)
|
colorator (1.1.0)
|
||||||
concurrent-ruby (1.2.0)
|
concurrent-ruby (1.2.2)
|
||||||
em-websocket (0.5.3)
|
em-websocket (0.5.3)
|
||||||
eventmachine (>= 0.12.9)
|
eventmachine (>= 0.12.9)
|
||||||
http_parser.rb (~> 0)
|
http_parser.rb (~> 0)
|
||||||
eventmachine (1.2.7)
|
eventmachine (1.2.7)
|
||||||
ffi (1.15.5)
|
ffi (1.15.5)
|
||||||
forwardable-extended (2.6.0)
|
forwardable-extended (2.6.0)
|
||||||
google-protobuf (3.21.12-x86_64-darwin)
|
google-protobuf (3.23.4-x86_64-darwin)
|
||||||
http_parser.rb (0.8.0)
|
http_parser.rb (0.8.0)
|
||||||
i18n (1.12.0)
|
i18n (1.14.1)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
jekyll (4.3.2)
|
jekyll (4.3.2)
|
||||||
addressable (~> 2.4)
|
addressable (~> 2.4)
|
||||||
|
@ -31,6 +31,8 @@ GEM
|
||||||
safe_yaml (~> 1.0)
|
safe_yaml (~> 1.0)
|
||||||
terminal-table (>= 1.8, < 4.0)
|
terminal-table (>= 1.8, < 4.0)
|
||||||
webrick (~> 1.7)
|
webrick (~> 1.7)
|
||||||
|
jekyll-mastodon_webfinger (1.0.2)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
jekyll-paginate (1.1.0)
|
jekyll-paginate (1.1.0)
|
||||||
jekyll-sass-converter (3.0.0)
|
jekyll-sass-converter (3.0.0)
|
||||||
sass-embedded (~> 1.54)
|
sass-embedded (~> 1.54)
|
||||||
|
@ -49,15 +51,15 @@ GEM
|
||||||
mercenary (0.4.0)
|
mercenary (0.4.0)
|
||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
public_suffix (5.0.1)
|
public_suffix (5.0.3)
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.10.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
rexml (3.2.5)
|
rexml (3.2.5)
|
||||||
rouge (4.0.1)
|
rouge (4.1.2)
|
||||||
safe_yaml (1.0.5)
|
safe_yaml (1.0.5)
|
||||||
sass-embedded (1.57.1-x86_64-darwin)
|
sass-embedded (1.63.6-x86_64-darwin)
|
||||||
google-protobuf (~> 3.21)
|
google-protobuf (~> 3.23)
|
||||||
terminal-table (3.0.2)
|
terminal-table (3.0.2)
|
||||||
unicode-display_width (>= 1.1.1, < 3)
|
unicode-display_width (>= 1.1.1, < 3)
|
||||||
unicode-display_width (2.4.2)
|
unicode-display_width (2.4.2)
|
||||||
|
@ -68,6 +70,7 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll
|
jekyll
|
||||||
|
jekyll-mastodon_webfinger (~> 1.0)
|
||||||
jekyll-paginate
|
jekyll-paginate
|
||||||
jekyll-sitemap
|
jekyll-sitemap
|
||||||
webrick
|
webrick
|
||||||
|
|
11
_config.yaml
11
_config.yaml
|
@ -10,7 +10,7 @@ url: "https://nicojensen.de"
|
||||||
# Build settings
|
# Build settings
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
|
|
||||||
include: ['.htaccess']
|
include: [".htaccess"]
|
||||||
include: [".well-known"]
|
include: [".well-known"]
|
||||||
|
|
||||||
exclude:
|
exclude:
|
||||||
|
@ -21,8 +21,8 @@ exclude:
|
||||||
- Gemfile.lock
|
- Gemfile.lock
|
||||||
- gulpfile.js
|
- gulpfile.js
|
||||||
- package.json
|
- package.json
|
||||||
- '*~'
|
- "*~"
|
||||||
- '#*#'
|
- "#*#"
|
||||||
- GPL.txt # No need for this to be in the site. LICENSE.md is, but not linked anywhere
|
- GPL.txt # No need for this to be in the site. LICENSE.md is, but not linked anywhere
|
||||||
|
|
||||||
keep_files:
|
keep_files:
|
||||||
|
@ -54,6 +54,11 @@ paginate: 5
|
||||||
paginate_path: "/page/:num/"
|
paginate_path: "/page/:num/"
|
||||||
permalink: /:year/:month/:day/:title/
|
permalink: /:year/:month/:day/:title/
|
||||||
|
|
||||||
|
mastodon:
|
||||||
|
username: nyansen
|
||||||
|
instance: elbmatsch.de
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-sitemap
|
- jekyll-sitemap
|
||||||
- jekyll-paginate
|
- jekyll-paginate
|
||||||
|
- jekyll/mastodon_webfinger
|
||||||
|
|
Loading…
Add table
Reference in a new issue