j1-template 2023.0.13 → 2023.0.14

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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/assets/data/banner.html +2 -2
  3. data/assets/themes/j1/adapter/js/advertising.js +21 -8
  4. data/assets/themes/j1/adapter/js/analytics.js +24 -8
  5. data/assets/themes/j1/adapter/js/carousel.js +10 -13
  6. data/assets/themes/j1/adapter/js/clipboard.js +8 -1
  7. data/assets/themes/j1/adapter/js/comments.js +193 -198
  8. data/assets/themes/j1/adapter/js/cookieConsent.js +27 -20
  9. data/assets/themes/j1/adapter/js/dropdowns.js +7 -10
  10. data/assets/themes/j1/adapter/js/fab.js +10 -17
  11. data/assets/themes/j1/adapter/js/framer.js +27 -31
  12. data/assets/themes/j1/adapter/js/j1.js +2 -0
  13. data/assets/themes/j1/adapter/js/justifiedGallery.js +15 -15
  14. data/assets/themes/j1/adapter/js/lightbox.js +25 -16
  15. data/assets/themes/j1/adapter/js/logger.js +13 -7
  16. data/assets/themes/j1/adapter/js/lunr.js +9 -11
  17. data/assets/themes/j1/adapter/js/masonry.js +9 -11
  18. data/assets/themes/j1/adapter/js/masterslider.js +28 -25
  19. data/assets/themes/j1/adapter/js/nbinteract.js +20 -15
  20. data/assets/themes/j1/adapter/js/particles.js +9 -7
  21. data/assets/themes/j1/adapter/js/rangeSlider.js +11 -13
  22. data/assets/themes/j1/adapter/js/rouge.js +1 -0
  23. data/assets/themes/j1/adapter/js/rtable.js +11 -13
  24. data/assets/themes/j1/adapter/js/scroller.js +18 -2
  25. data/assets/themes/j1/adapter/js/themer.js +23 -16
  26. data/assets/themes/j1/adapter/js/toccer.js +16 -20
  27. data/assets/themes/j1/adapter/js/translator.js +28 -30
  28. data/assets/themes/j1/adapter/js/waves.js +9 -7
  29. data/lib/j1/version.rb +1 -1
  30. data/lib/starter_web/Gemfile +1 -1
  31. data/lib/starter_web/README.md +5 -5
  32. data/lib/starter_web/_config.yml +2 -2
  33. data/lib/starter_web/_data/j1_config.yml +432 -432
  34. data/lib/starter_web/_data/modules/analytics.yml +2 -65
  35. data/lib/starter_web/_data/modules/comments.yml +11 -1
  36. data/lib/starter_web/_data/modules/defaults/analytics.yml +3 -3
  37. data/lib/starter_web/_data/modules/defaults/comments.yml +0 -25
  38. data/lib/starter_web/_data/modules/scroller.yml +1 -1
  39. data/lib/starter_web/_data/resources.yml +1 -1
  40. data/lib/starter_web/_data/templates/feed.xml +1 -1
  41. data/lib/starter_web/_plugins/index/lunr.rb +1 -1
  42. data/lib/starter_web/package.json +1 -1
  43. data/lib/starter_web/pages/public/about/site.adoc +76 -76
  44. data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +2 -2
  45. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  46. data/lib/starter_web/utilsrv/package.json +1 -1
  47. metadata +2 -2
@@ -24,73 +24,10 @@ description:
24
24
  # User configuration settings
25
25
  #
26
26
  settings:
27
+ enabled: true
27
28
 
28
- provider: google
29
29
  google:
30
- # --------------------------------------------------------------------------
31
- # Provider settings
32
- #
33
- # provider
34
- # --------------------------------------------------------------------------
35
- # Currently, only Google Analytics (google) is available as an provider
36
- # for Analytics services.
37
- #
38
- # values: [google]
39
- # default: google
40
- #
41
- # skipAllHosts
42
- # ------------------------------------------------------------------------
43
- # All hosts skipped for Google Analytics (GA script NOT installed).
44
- # Prevent counting of page views (for e.g. development), even GA is
45
- # 'enabled' and a valid trackingID is configured.
46
- #
47
- # values: comma separated string
48
- # default: localhost, 127.0.0.1
49
- #
50
- # trackingID
51
- # ------------------------------------------------------------------------
52
- # Your tracking id (G-XXX..XX) connected with your Analytices
53
- # Account the for the domain registered.
54
- #
55
- # values: string
56
- # default: none
57
- #
58
-
59
- # optInOut
60
- # ------------------------------------------------------------------------
61
- # Google Analytics Opt In. GA will be enabled by default and at a
62
- # later point it can be disabled based on the visitor's privacy
63
- # settings (Analytics) with the cookie consent dialog.
64
- #
65
- # values: [true|false]
66
- # default: true
67
- #
68
- # anonymizeIP
69
- # ------------------------------------------------------------------------
70
- # For the use of Google Analytics to comply with the GDPR, the processed
71
- # IP address at GA can be anonymized (set option 'anonymizeIp' to 'true').
72
- # The IP anonymization function at Google GA holds the data "in memeory"
73
- # and sets the last octet for the user's IPv4 addresses and the last
74
- # 80 bits for IPv6 addresses to zero.
75
- # That happens at GA shortly after they are sent to Google Analytics.
76
- # This way, the full IP address is NEVER written to disk or stored
77
- # permanenty anyway. Geographically dimensions are later derived from
78
- # the anonymized IP address NOT affected by anonymization.
79
- #
80
- # See:
81
- # https://support.google.com/analytics/answer/2763052
82
- # https://developers.google.com/analytics/devguides/collection/analyticsjs/ip-anonymization?hl=en
83
- #
84
- # values: [true|false]
85
- # default: true
86
- #
87
- # --------------------------------------------------------------------------
88
- #
89
- skipAllHosts: localhost, 127.0.0.1
90
-
91
- trackingID: '<your-tracking-id>' # set a vaild your-tracking-id
92
- optInOut: true
93
- anonymizeIP: true
30
+ trackingID: your-tracking-id
94
31
 
95
32
  # ------------------------------------------------------------------------------
96
33
  # END config
@@ -47,8 +47,18 @@ settings:
47
47
  # ----------------------------------------------------------------------------
48
48
  # Base settings (required)
49
49
  # ----------------------------------------------------------------------------
50
- enabled: false
50
+ enabled: true
51
+
52
+ # ----------------------------------------------------------------------------
53
+ # Provider settings
54
+ # ----------------------------------------------------------------------------
51
55
  provider: hyvor
56
+ site_id: your-site-id
57
+
58
+ hyvor:
59
+ site_id: your-site-id
60
+
61
+
52
62
 
53
63
  # ------------------------------------------------------------------------------
54
64
  # END config
@@ -54,7 +54,6 @@ defaults:
54
54
 
55
55
  provider: google
56
56
  google:
57
-
58
57
  # --------------------------------------------------------------------------
59
58
  # Provider settings
60
59
  #
@@ -62,7 +61,8 @@ defaults:
62
61
  # ------------------------------------------------------------------------
63
62
  # All hosts skipped for Google Analytics (GA script NOT installed).
64
63
  # Prevent counting of page views (for e.g. development), even GA is
65
- # 'enabled' and a valid trackingID is configured.
64
+ # 'enabled' and a valid trackingID is configured, the default setting
65
+ # is recommended.
66
66
  #
67
67
  # values: comma separated string
68
68
  # default: localhost, 127.0.0.1
@@ -96,7 +96,7 @@ defaults:
96
96
  # --------------------------------------------------------------------------
97
97
  #
98
98
  skipAllHosts: localhost, 127.0.0.1
99
-
99
+ trackingID: your-tracking-id
100
100
  optInOut: true
101
101
  anonymizeIP: true
102
102
 
@@ -15,7 +15,6 @@
15
15
  # Description (used for J1 CC only)
16
16
  #
17
17
  description:
18
-
19
18
  title: J1 Comments
20
19
  scope: Default settings
21
20
  location: _data/modules/default/comments.yml
@@ -86,29 +85,5 @@ defaults:
86
85
  "ro": Lasa un comentariu
87
86
  "ru": Оставить комментарий
88
87
 
89
- # ----------------------------------------------------------------------------
90
- # Provider settings
91
- # ----------------------------------------------------------------------------
92
- hyvor:
93
- site_id: '<your-hyvor-site-id>'
94
-
95
- disqus:
96
- site_id: '<your-site-short-name>'
97
-
98
- # currently NOT supported
99
- commento:
100
- site_id: '<your-commento-site-id>'
101
-
102
- # currently NOT supported
103
- just-comments:
104
- site_id: '<your-just-comments-site-id>'
105
-
106
- # currently NOT supported
107
- facebook:
108
- site_id: '<your-facebook-app-id>'
109
- num_posts: 5
110
- width: 580
111
- colorscheme: light
112
-
113
88
  # ------------------------------------------------------------------------------
114
89
  # END config
@@ -31,7 +31,7 @@ settings:
31
31
  # Intro Panel
32
32
  #
33
33
  - scroller:
34
- enabled: true
34
+ enabled: false
35
35
  type: showOnScroll
36
36
  id: home_intro_panel
37
37
  container: home_intro_panel
@@ -1715,7 +1715,7 @@ resources:
1715
1715
  preload: false
1716
1716
  script_load: async
1717
1717
  dependencies: false
1718
- pass_init_data: false
1718
+ pass_init_data: true
1719
1719
  data:
1720
1720
  css: []
1721
1721
  files: [ adapter/js/comments.js ]
@@ -57,7 +57,7 @@
57
57
  <id>{{ page.url | absolute_url | xml_escape }}</id>
58
58
  <post_limited>{{ limit_posts }}</post_limited>
59
59
  <template_name>J1 Theme</template_name>
60
- <template_version>2023.0.13</template_version>
60
+ <template_version>2023.0.14</template_version>
61
61
 
62
62
  {% assign title = site.title | default: site.name %}
63
63
  {% if page.collection != "posts" %}
@@ -391,6 +391,6 @@ end
391
391
 
392
392
  module Jekyll
393
393
  module J1LunrSearch
394
- VERSION = '2023.0.13'
394
+ VERSION = '2023.0.14'
395
395
  end
396
396
  end
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1",
4
- "version": "2023.0.13",
4
+ "version": "2023.0.14",
5
5
  "description": "J1 Theme Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -1,76 +1,76 @@
1
- ---
2
- title: Starter
3
- tagline: About This Site
4
- date: 2022-01-01 00:00:00
5
- description: >
6
- Things you should know about this site, the people, the software
7
- and the services provided by this project.
8
- keywords: >
9
- Jekyll, Theme, JekyllOne, J1, About, Project, Site
10
-
11
- categories: [ About ]
12
- tags: [ Site, Review ]
13
-
14
- image:
15
- path: /assets/images/modules/attics/1920x1280/j1-theme-mockup-1.jpg
16
- width: 1920
17
- height: 1280
18
- alt: J1 Theme Mockup
19
-
20
- fab_menu_id: default
21
- scrollbar: false
22
- comments: false
23
-
24
- regenerate: false
25
- permalink: /pages/public/about/starter/
26
-
27
- resources: [ animate ]
28
- resource_options:
29
- - attic:
30
- padding_top: 600
31
- slides:
32
- - url: /assets/images/modules/attics/1920x1280/j1-theme-mockup-1.jpg
33
- alt: J1 Themes Mockup
34
- ---
35
-
36
- // Page Initializer
37
- // =============================================================================
38
- // Enable the Liquid Preprocessor
39
- :page-liquid:
40
-
41
- // Set (local) page attributes here
42
- // -----------------------------------------------------------------------------
43
- // :page--attr: <attr-value>
44
-
45
- // Attribute settings for section control
46
- //
47
- :badges-enabled: true
48
-
49
- // Load Liquid procedures
50
- // -----------------------------------------------------------------------------
51
- {% capture load_attributes %}themes/{{site.template.name}}/procedures/global/attributes_loader.proc{%endcapture%}
52
-
53
- // Load page attributes
54
- // -----------------------------------------------------------------------------
55
- {% include {{load_attributes}} scope="global" %}
56
-
57
- ifeval::[{badges-enabled} == true]
58
- [role="mb-5"]
59
- {badge-j1--version-latest} {badge-j1--downloads}
60
- endif::[]
61
-
62
-
63
- // Page content
64
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
- [role="dropcap"]
66
- Things you should know about this site, the people, the software and the
67
- services provided by this project.
68
-
69
- // Include sub-documents (if any)
70
- // -----------------------------------------------------------------------------
71
- Whether you work solo or as part of a team, it’s always a great idea to
72
- help visitors put a face to the names behind a website. The best place to
73
- include a bit of information about you and your team is on your homepage with
74
- an About page so that no one will miss it.
75
-
76
- Good luck presenting your site, your project to the world!
1
+ ---
2
+ title: Starter
3
+ tagline: About This Site
4
+ date: 2022-01-01 00:00:00
5
+ description: >
6
+ Things you should know about this site, the people, the software
7
+ and the services provided by this project.
8
+ keywords: >
9
+ Jekyll, Theme, JekyllOne, J1, About, Project, Site
10
+
11
+ categories: [ About ]
12
+ tags: [ Site, Review ]
13
+
14
+ image:
15
+ path: /assets/images/modules/attics/1920x1280/j1-theme-mockup-1.jpg
16
+ width: 1920
17
+ height: 1280
18
+ alt: J1 Theme Mockup
19
+
20
+ fab_menu_id: default
21
+ scrollbar: false
22
+ comments: false
23
+
24
+ regenerate: false
25
+ permalink: /pages/public/about/starter/
26
+
27
+ resources: [ animate ]
28
+ resource_options:
29
+ - attic:
30
+ padding_top: 600
31
+ slides:
32
+ - url: /assets/images/modules/attics/1920x1280/j1-theme-mockup-1.jpg
33
+ alt: J1 Themes Mockup
34
+ ---
35
+
36
+ // Page Initializer
37
+ // =============================================================================
38
+ // Enable the Liquid Preprocessor
39
+ :page-liquid:
40
+
41
+ // Set (local) page attributes here
42
+ // -----------------------------------------------------------------------------
43
+ // :page--attr: <attr-value>
44
+
45
+ // Attribute settings for section control
46
+ //
47
+ :badges-enabled: true
48
+
49
+ // Load Liquid procedures
50
+ // -----------------------------------------------------------------------------
51
+ {% capture load_attributes %}themes/{{site.template.name}}/procedures/global/attributes_loader.proc{%endcapture%}
52
+
53
+ // Load page attributes
54
+ // -----------------------------------------------------------------------------
55
+ {% include {{load_attributes}} scope="global" %}
56
+
57
+ ifeval::[{badges-enabled} == true]
58
+ [role="mb-5"]
59
+ {badge-j1--version-latest} {badge-j1--downloads}
60
+ endif::[]
61
+
62
+
63
+ // Page content
64
+ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
+ [role="dropcap"]
66
+ Things you should know about this site, the people, the software and the
67
+ services provided by this project.
68
+
69
+ // Include sub-documents (if any)
70
+ // -----------------------------------------------------------------------------
71
+ Whether you work solo or as part of a team, it’s always a great idea to
72
+ help visitors put a face to the names behind a website. The best place to
73
+ include a bit of information about you and your team is on your homepage with
74
+ an About page so that no one will miss it.
75
+
76
+ Good luck presenting your site, your project to the world!
@@ -20,10 +20,11 @@ image:
20
20
  height: 1280
21
21
  alt: puzzle-1920x1280-bw
22
22
 
23
+ comments: false
23
24
  permalink: /pages/public/learn/roundtrip/asciidoc_extensions/
24
25
  regenerate: false
25
26
 
26
- resources: [ animate, clipboard, lightbox, iconify, rouge ]
27
+ resources: [ animate, clipboard, comments, lightbox, iconify, rouge ]
27
28
  resource_options:
28
29
  - attic:
29
30
  padding_top: 600
@@ -32,7 +33,6 @@ resource_options:
32
33
  alt: puzzle-1920x1280-bw
33
34
  ---
34
35
 
35
-
36
36
  // Page Initializer
37
37
  // =============================================================================
38
38
  // Enable the Liquid Preprocessor
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.0.13",
4
+ "version": "2023.0.14",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.0.13",
4
+ "version": "2023.0.14",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: j1-template
3
3
  version: !ruby/object:Gem::Version
4
- version: 2023.0.13
4
+ version: 2023.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - juergen_jekyll_one
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-10 00:00:00.000000000 Z
11
+ date: 2023-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll