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