jekyll-theme-endless 0.10.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 560f407df8cb9cda4734f41dad24427aa4c9295c6241b637229eaa0bb49299a3
4
- data.tar.gz: c94de1e989a5ed86d33326c99e4a5750c78506e811388e8a4c0f28093edba9ed
3
+ metadata.gz: e1bcbace81dbd3e228145d6e4d38e953c9bb860ccabed12b6be20bb786e81522
4
+ data.tar.gz: 6e3410eba76600a6d3fa3121133dfa0384df7770dc99ac4da3ca2b3901c3f661
5
5
  SHA512:
6
- metadata.gz: 19d4d7273e2ad8b200eb6d51be9a657b547f343252d356a07b88c055648b8c97a73817f1626da258f11b0079779a3fcdeb534a5dae2e9fa88dc8aa58eccb9890
7
- data.tar.gz: 2381c57fe3468e3ba59145d7d5526639f9bac9c232cb60842c19a5ae651020b7f4ac2efab17c225257af3b4040c5f6ac36b91c1ec7e897d3b07e23fc74496a76
6
+ metadata.gz: 160709219596590375f284eb0975ae01815435843c395213fb44564a6097768feaacc0cfae907c19e55ff04d4983268e4503f2f8cea47f7021bc937d0feffbec
7
+ data.tar.gz: b12a02b651831f75773ac35914e67d457987af08f92fba98207448c890f2f205e897f28a433ed84aadd5ed602555cfcefa1b521a364033738c5c51339c647188
data/_config.yml CHANGED
@@ -11,8 +11,13 @@
11
11
  # If you need help with YAML syntax, here are some quick references for you:
12
12
  # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13
13
  # https://learnxinyminutes.com/docs/yaml/
14
- #
14
+
15
+
16
+
17
+
18
+
15
19
  # Site settings
20
+ ###############################################################################
16
21
  # These are used to personalize your new site. If you look in the HTML files,
17
22
  # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18
23
  # You can create any custom variable you would like, and they will be accessible
@@ -23,7 +28,10 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
23
28
 
24
29
 
25
30
 
31
+
32
+
26
33
  # AsciiDoc settings
34
+ ###############################################################################
27
35
  asciidoctor:
28
36
  attributes:
29
37
  # Highlighting source code using rouge
@@ -36,27 +44,34 @@ asciidoctor:
36
44
 
37
45
 
38
46
 
39
- # Theme specific settings
40
- # Find example data in _data.yml of the theme repository.
41
- # Run `bundle exec jekyll serve --config _config.yml,_data.yml`
42
47
 
43
48
 
44
49
  # Build settings
45
- #theme: minima
50
+ ###############################################################################
51
+ # Load data (e.g. layouts) from a theme that is installed using bundler
52
+ # Not required in this repository, since it provides the theme ("jekyll-theme-endless")
53
+ #theme: jekyll-theme-endless
54
+
55
+ # `plugins` specifies the list of plugins that are installed via RubyGems and managed through Bundler.
56
+ # These are typically shared or third-party plugins available in the RubyGems ecosystem.
46
57
  #plugins:
58
+ # Required to load the plugin that generates the tag pages.
59
+ # jekyll-theme-endless is both a theme AND a plugin.
60
+ # NOT required in the repository that provides the plugin.
61
+ # Instead, the plugin can be loaded from the `./lib` directory.
62
+ # Local plugins are configured via the `plugins_dir` setting,
63
+ # which in this project has been outsourced to `_data.yml`.
64
+ #- jekyll-theme-endless
65
+ # Feed plugin currently not used
47
66
  # - jekyll-feed
48
67
 
49
- # Exclude from processing.
50
- # The following items will not be processed, by default.
51
- # Any item listed under the `exclude:` key here will be automatically added to
52
- # the internal "default list".
68
+ # Exclude files from processing.
53
69
  #
54
70
  # Excluded items can be processed by explicitly listing the directories or
55
71
  # their entries' file path in the `include:` list.
56
72
  #
57
73
  exclude:
58
- - '*.gemspec'
59
- - LICENSE.txt
74
+ ## The following items are not processed, by default.
60
75
  # - .sass-cache/
61
76
  # - .jekyll-cache/
62
77
  # - gemfiles/
@@ -67,5 +82,24 @@ exclude:
67
82
  # - vendor/cache/
68
83
  # - vendor/gems/
69
84
  # - vendor/ruby/
85
+ ## Your excludes:
86
+ ## Any item listed under the `exclude:` key here will be automatically added to
87
+ ## the internal "default list".
88
+ - '*.gemspec'
89
+ - LICENSE.txt
90
+ - .gitlab-ci.yml
91
+ - .gitignore
92
+ - .editorconfig
93
+
94
+
95
+
96
+
97
+
98
+ # Settings for: jekyll-theme-endless
99
+ ###############################################################################
100
+ # These settings have been outsourced into the file `_data.yml` in this project.
101
+ # You can find example data in the `_data.yml` file of the theme repository.
102
+ # If you want to build the theme website, you need to start the Jekyll server with two configuration files:
103
+ # `bundle exec jekyll serve --config _config.yml,_data.yml`
70
104
 
71
105
 
@@ -1,3 +1,16 @@
1
+ SASS:
2
+ short: "SASS (Syntactically Awesome Stylesheets) is a CSS preprocessor that adds advanced features like variables, nested rules, and mixins to standard CSS. SASS has two syntax options: the older indented syntax (SASS) and the newer, more CSS-like syntax (SCSS). The SASS syntax uses indentation instead of curly braces and semicolons, while SCSS is more similar to traditional CSS and is often preferred for its familiarity."
3
+ cleanup:
4
+ short: "The process of removing unnecessary or temporary files, obsolete code, or outdated data from a system or project to improve performance or maintainability."
5
+ _data.yml:
6
+ short: "A YAML file used to store settings required for the theme website. They were outsourced from the _config.yml file to prevent them from being loaded as default values when using the theme."
7
+ dependencies:
8
+ short: "External libraries, modules, or packages required by a project or software to function properly, typically managed by package managers like bundler."
9
+ bash:
10
+ short: "A popular Unix shell and command language, commonly used for scripting and automating tasks in Linux and macOS environments."
11
+ deployment:
12
+ short: "The process of releasing or distributing software to a production environment, making it available for use by end users."
13
+
1
14
  statistics:
2
15
  short: "Data or numerical insights gathered from various sources, often used to analyze performance, user behavior, or other measurable factors."
3
16
  bugfixes:
data/_data.yml CHANGED
@@ -1,4 +1,9 @@
1
- # Theme specific settings
1
+ # Theme-specific settings
2
+ ################################################################################
3
+ # All configuration options for the theme jekyll-theme-endless are listed here.
4
+ # These settings are outsourced into a separate file because they contain the values for the theme’s website.
5
+ # This way, these values are not used as default settings when you integrate the theme into your own project.
6
+
2
7
  # Language. Is overriden by value of page.lang.
3
8
  lang: en
4
9
  # Brand is not escaped in the layout.
@@ -35,14 +40,24 @@ tag_dir: posts-for-tag
35
40
  # default: `Tag: `
36
41
  tag_title_prefix: "Posts tagged with: "
37
42
 
38
- # Change the plugins directory from `_plugins` to `./lib` to enable the plugins to be used in the theme.
39
- # Storing plugins the folder `lib` seems to be a good practice.
40
- plugins_dir:
41
- - ./lib
42
-
43
43
  # You can dynamically add import statements to assets/css/main.css
44
44
  # Just add the path (relative to the folder `_sass`) to this array
45
45
  # CAUTION: omit the ending ".scss"
46
46
  additional-stylesheets:
47
47
  - "../theme-specific/debug"
48
48
 
49
+
50
+
51
+
52
+
53
+ # Specific settings for this project
54
+ ################################################################################
55
+ # In this project, the plugin for generating tag pages is loaded from the local directory `./lib`.
56
+ # The folder where Jekyll looks for locally available plugins is configured via `plugins_dir`.
57
+ # The default value for this is `_plugins`.
58
+ # However, `_plugins` is also the directory that Jekyll uses for plugins managed by Bundler
59
+ # (those plugins are specified using the `plugins` array in `_config.yml`).
60
+ # Therefore, it is good practice to define a separate directory for locally available plugins.
61
+ plugins_dir:
62
+ - ./lib
63
+
@@ -93,3 +93,4 @@ Bei Änderungen auch den entsprechenden Blog-Eintrag vom 28.10.2020 anpassen!
93
93
  %}
94
94
 
95
95
  {% endif %}
96
+
data/assets/css/main.scss CHANGED
@@ -7,47 +7,47 @@
7
7
  * imports _scss/background.scss
8
8
  * imports _scss/icons.scss
9
9
  */
10
- @import "background";
11
- @import "address";
12
- @import "tag-cloud";
13
- @import "posts";
14
- @import "structure";
10
+ @use "background";
11
+ @use "address";
12
+ @use "tag-cloud";
13
+ @use "posts";
14
+ @use "structure";
15
15
 
16
16
  /*
17
17
  * Import styles for highlighting source code that was annotated using rouge.
18
18
  */
19
- @import "rouge-highlight";
19
+ @use "rouge-highlight";
20
20
 
21
21
  /*
22
22
  * Import styles for Markdown.
23
23
  */
24
- @import "md-quote";
25
- @import "md-lists";
26
- @import "md-tables";
24
+ @use "md-quote";
25
+ @use "md-lists";
26
+ @use "md-tables";
27
27
 
28
28
  /*
29
29
  * Import styles for AsciiDoc.
30
30
  */
31
- @import "adoc";
32
- @import "adoc-admonition";
33
- @import "adoc-tables";
34
- @import "adoc-lists";
35
- @import "adoc-quote";
36
- @import "adoc-images";
37
- @import "adoc-code";
38
- @import "adoc-text";
31
+ @use "adoc";
32
+ @use "adoc-admonition";
33
+ @use "adoc-tables";
34
+ @use "adoc-lists";
35
+ @use "adoc-quote";
36
+ @use "adoc-images";
37
+ @use "adoc-code";
38
+ @use "adoc-text";
39
39
 
40
40
  /*
41
41
  * Dynamically add stylesheets as configured by the user in `_config.yml`
42
42
  */
43
43
  {% for stylesheet in site.additional-stylesheets %}
44
- @import "{{ stylesheet }}";
44
+ @use "{{ stylesheet }}";
45
45
  {% endfor %}
46
46
 
47
47
  /*
48
48
  * Import SCSS-Code contributed by the user of the theme.
49
49
  * imports from _scss/background.scss
50
50
  */
51
- @import "user";
51
+ @use "user";
52
52
 
53
53
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.10.0'
3
+ VERSION = '0.11.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-endless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Boekhoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-22 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll-asciidoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: jekyll
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -24,6 +38,20 @@ dependencies:
24
38
  - - "~>"
25
39
  - !ruby/object:Gem::Version
26
40
  version: '4.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rouge
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.4'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.4'
27
55
  description:
28
56
  email:
29
57
  - rubygems.org@boekhoff.net
@@ -88,7 +116,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
88
116
  requirements:
89
117
  - - ">="
90
118
  - !ruby/object:Gem::Version
91
- version: '0'
119
+ version: 3.3.5
92
120
  required_rubygems_version: !ruby/object:Gem::Requirement
93
121
  requirements:
94
122
  - - ">="