j1-template 2021.3.1 → 2021.3.2
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 +4 -4
- data/assets/data/menu.html +55 -55
- data/assets/data/mmenu.html +53 -53
- data/assets/data/quicklinks.html +3 -3
- data/assets/themes/j1/adapter/js/j1.js +1 -1
- data/assets/themes/j1/core/css/animate.min.css +1 -1
- data/assets/themes/j1/core/css/icon-fonts/fontawesome.min.css +1 -1
- data/assets/themes/j1/core/css/icon-fonts/materialdesign-light.min.css +1 -1
- data/assets/themes/j1/core/css/icon-fonts/materialdesign.min.css +1 -1
- data/assets/themes/j1/core/css/icon-fonts/twemoji.min.css +1 -1
- data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +1 -1
- data/assets/themes/j1/core/css/themes/uno-dark/bootstrap.min.css +1 -1
- data/assets/themes/j1/core/css/themes/uno-light/bootstrap.min.css +23 -1
- data/assets/themes/j1/core/css/vendor.min.css +1 -1
- data/assets/themes/j1/core/js/template.js +8163 -10392
- data/assets/themes/j1/core/js/template.min.js +20 -30
- data/assets/themes/j1/core/js/template.min.js.map +1 -1
- data/assets/themes/j1/modules/backstretch/js/backstretch.min.js +1 -1
- data/assets/themes/j1/modules/bmd/js/bootstrap-material-design.full.js +1 -1
- data/assets/themes/j1/modules/bmd/js/bootstrap-material-design.js +1 -1
- data/assets/themes/j1/modules/bmd/js/bootstrap-material-design.min.js +1 -1
- data/assets/themes/j1/modules/datatables/js/datatables.js +1 -1
- data/assets/themes/j1/modules/datatables/js/datatables.min.js +5 -5
- data/assets/themes/j1/modules/iframeResizer/examples/frame.absolute.html +3 -3
- data/assets/themes/j1/modules/iframeResizer/examples/frame.content.html +6 -6
- data/assets/themes/j1/modules/iframeResizer/examples/frame.tolerance.html +2 -2
- data/assets/themes/j1/modules/iframeResizer/js/client/iframeResizer.contentWindow.js +1 -1
- data/assets/themes/j1/modules/iframeResizer/js/client/iframeResizer.contentWindow.min.js +1 -1
- data/assets/themes/j1/modules/iframeResizer/js/resizer.min.js +1 -1
- data/assets/themes/j1/modules/jquery/js/jquery.js +2 -2
- data/assets/themes/j1/modules/jquery/js/jquery.min.js +1 -1
- data/assets/themes/j1/modules/jquery/js/jqueryUI.js +7 -7
- data/assets/themes/j1/modules/jquery/js/jqueryUI.min.js +3 -3
- data/assets/themes/j1/modules/lightGallery/js/core/j1/lightgallery-x.min.js +1 -1
- data/assets/themes/j1/modules/lightGallery/js/core/lightgallery.min.js +1 -1
- data/assets/themes/j1/modules/lightGallery/js/modules/j1/j1-video.min.js +1 -1
- data/assets/themes/j1/modules/lightGallery/js/modules/j1/j1-x-video.min.js +1 -1
- data/assets/themes/j1/modules/lightbox/js/lightbox.js +1 -1
- data/assets/themes/j1/modules/lightbox/js/lightbox.min.js +1 -1
- data/assets/themes/j1/modules/lunrSearch/js/mustache.js +1 -1
- data/assets/themes/j1/modules/lunrSearch/js/mustache.min.js +1 -1
- data/assets/themes/j1/modules/lunrSearch/js/uri.js +1 -1
- data/assets/themes/j1/modules/lunrSearch/js/uri.min.js +7 -7
- data/assets/themes/j1/modules/mdiPreviewer/js/previewer.min.js +1 -1
- data/assets/themes/j1/modules/mdilPreviewer/js/previewer.min.js +1 -1
- data/assets/themes/j1/modules/scroller/js/scroller.js +2 -2
- data/assets/themes/j1/modules/scroller/js/scroller.min.js +1 -1
- data/assets/themes/j1/modules/themeSwitcher/js/switcher.js +8 -8
- data/assets/themes/j1/modules/themeSwitcher/js/switcher.min.js +1 -431
- data/assets/themes/j1/modules/twemoji/js/picker/twemoji-picker.js +1 -1
- data/assets/themes/j1/modules/twemoji/js/picker/twemoji-picker.min.js +1 -1
- data/assets/themes/j1/modules/videojs/js/video.min.js +2 -2
- data/lib/j1/version.rb +3 -3
- data/lib/starter_web/Gemfile +2 -2
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/{private.default.yml → _defaults/private.yml} +2 -0
- data/lib/starter_web/_data/private.yml +3 -1
- data/lib/starter_web/_includes/attributes.asciidoc +1 -1
- data/lib/starter_web/_plugins/lunr_index.rb +1 -1
- data/lib/starter_web/package.json +4 -10
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +2 -1
- metadata +3 -5
- data/lib/starter_web/_data/_defaults/j1_config.1.yml +0 -478
- data/lib/starter_web/_data/_defaults/private.default.yml +0 -119
data/lib/j1/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module J1
|
2
|
-
VERSION = '2021.3.
|
3
|
-
end
|
1
|
+
module J1
|
2
|
+
VERSION = '2021.3.2'
|
3
|
+
end
|
data/lib/starter_web/Gemfile
CHANGED
@@ -53,7 +53,7 @@ gem 'jekyll', '~> 4.2'
|
|
53
53
|
|
54
54
|
# Theme Rubies, default: J1 Template (NOT used for the development system)
|
55
55
|
#
|
56
|
-
gem 'j1-template', '~> 2021.3.
|
56
|
+
gem 'j1-template', '~> 2021.3.2'
|
57
57
|
|
58
58
|
# ------------------------------------------------------------------------------
|
59
59
|
# PRODUCTION: Gem needed for the Jekyll and J1 prod environment
|
@@ -166,7 +166,7 @@ end
|
|
166
166
|
# running # tasks defined by a Rakefile prior running the app|web.
|
167
167
|
#
|
168
168
|
# gem 'passenger', '>= 5.3'
|
169
|
-
gem 'puma', '>=
|
169
|
+
gem 'puma', '>= 5.5.2'
|
170
170
|
|
171
171
|
# ------------------------------------------------------------------------------
|
172
172
|
# If J1 is transformed into a (Rack and Sinatra based) Web
|
data/lib/starter_web/_config.yml
CHANGED
@@ -53,7 +53,7 @@ environment: development
|
|
53
53
|
# ------------------------------------------------------------------------------
|
54
54
|
# Sets the build version of J1 Template Gem
|
55
55
|
#
|
56
|
-
version: 2021.3.
|
56
|
+
version: 2021.3.2
|
57
57
|
|
58
58
|
# version
|
59
59
|
# ------------------------------------------------------------------------------
|
@@ -26,6 +26,7 @@ global:
|
|
26
26
|
# used by J1 for encryption
|
27
27
|
session_secret: <your-secret-string>
|
28
28
|
|
29
|
+
|
29
30
|
# ==============================================================================
|
30
31
|
# Translator settings
|
31
32
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@@ -34,6 +35,7 @@ translators:
|
|
34
35
|
deepl:
|
35
36
|
auth_key: <your-auth-key>
|
36
37
|
|
38
|
+
|
37
39
|
# ==============================================================================
|
38
40
|
# MODULE settings
|
39
41
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@@ -26,13 +26,15 @@ global:
|
|
26
26
|
# used by J1 for encryption
|
27
27
|
session_secret: <your-secret-string>
|
28
28
|
|
29
|
+
|
29
30
|
# ==============================================================================
|
30
31
|
# Translator settings
|
31
32
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
32
33
|
translators:
|
33
34
|
|
34
35
|
deepl:
|
35
|
-
auth_key:
|
36
|
+
auth_key: <your-auth-key>
|
37
|
+
|
36
38
|
|
37
39
|
# ==============================================================================
|
38
40
|
# MODULE settings
|
@@ -433,7 +433,7 @@ end::tables[]
|
|
433
433
|
// -----------------------------------------------------------------------------
|
434
434
|
tag::products[]
|
435
435
|
:j1--license: MIT License
|
436
|
-
:j1--version: 2021.3.
|
436
|
+
:j1--version: 2021.3.2
|
437
437
|
:j1--site-name: Jekyll One
|
438
438
|
end::products[]
|
439
439
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"private": true,
|
3
3
|
"name": "j1_starter",
|
4
|
-
"version": "2021.3.
|
4
|
+
"version": "2021.3.2",
|
5
5
|
"description": "J1 Template Starter Web",
|
6
6
|
"homepage": "https://your.site",
|
7
7
|
"author": {
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"app": "run-p -s app:*",
|
58
58
|
"app:rackup": "cross-env SINATRA_ACTIVESUPPORT_WARNING=false WEBSERVER=$npm_package_jekyll_opt_webserver INTERFACE=$npm_package_jekyll_opt_interface PORT=$npm_package_jekyll_opt_app_port j1 rackup",
|
59
59
|
"app:jekyll": "cross-var cross-env JEKYLL_ENV=$npm_package_config_mode BUNDLE_GEMFILE=$npm_package_ruby_gemfile bundle exec jekyll b -c $npm_package_jekyll_configfile $npm_package_jekyll_opt_incremental --watch",
|
60
|
-
"app:open": "npm run delay-3s && cross-var
|
60
|
+
"app:open": "npm run delay-3s && cross-var open-cli $npm_package_jekyll_opt_app_url",
|
61
61
|
|
62
62
|
"delay-1s": "node ./node_modules/npm-delay 1000",
|
63
63
|
"delay-2s": "node ./node_modules/npm-delay 2000",
|
@@ -111,7 +111,7 @@
|
|
111
111
|
|
112
112
|
"setup": "npm --silent run setup-start && npm --silent run setup-base && run-s -s setup:*",
|
113
113
|
"setup-start": "echo Setup project for first use ..",
|
114
|
-
"setup-base": "echo Bootstrap base modules .. && echo J1 Project Base modules: > install.log && npm --silent
|
114
|
+
"setup-base": "echo Bootstrap base modules .. && echo J1 Project Base modules: > install.log && npm --silent install shx npm-run-all cross-var cross-env >> install.log && echo done.",
|
115
115
|
"setup:env": "echo Configure environment .. && run-s -s set-env:*",
|
116
116
|
"set-env:loglevel": "cross-var cross-env npm config set jekyll_one_com:loglevel $npm_package_config_loglevel",
|
117
117
|
"set-env:mode": "cross-var cross-env npm config set jekyll_one_com:mode $npm_package_config_mode && echo done.",
|
@@ -121,6 +121,7 @@
|
|
121
121
|
"setup:create-etc-folder": "echo Create etc folder .. && shx mkdir ./etc && echo done.",
|
122
122
|
"setup:node-modules-base": "echo Bootstrap project modules .. && echo J1 Project modules: >> install.log && npm --silent install >> install.log",
|
123
123
|
"setup:node-modules-utilsrv": "echo Bootstrap utility server modules .. && echo J1 Utility Server modules: >> install.log && cd utilsrv && npm --silent install >> ../install.log && cd .. && echo done.",
|
124
|
+
"setup:private-config": "shx cp -f _data/_defaults/private.yml _data/private.yml",
|
124
125
|
"setup:detect-os": "echo Detect OS .. && cross-env if-env OS=Windows_NT && cross-var echo \"OS detected: $OS\" || OS=$(echo $(getos)) && echo \"OS detected: $OS\" && echo done.",
|
125
126
|
"setup:site": "run-s -s build",
|
126
127
|
|
@@ -142,12 +143,5 @@
|
|
142
143
|
"j1-cli": "^2019.0.3",
|
143
144
|
"npm-delay": "^1.0.4",
|
144
145
|
"opn-cli": "^5.0.0"
|
145
|
-
},
|
146
|
-
"devDependencies": {
|
147
|
-
"cross-env": "^7.0.3",
|
148
|
-
"cross-var": "^1.1.0",
|
149
|
-
"lnk-cli": "^1.0.1",
|
150
|
-
"npm-run-all": "^4.1.5",
|
151
|
-
"shx": "^0.3.3"
|
152
146
|
}
|
153
147
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"private": true,
|
3
3
|
"name": "utls",
|
4
|
-
"version": "2021.3.
|
4
|
+
"version": "2021.3.2",
|
5
5
|
"description": "J1 Template Utility Server",
|
6
6
|
"homepage": "https://jekyll.one",
|
7
7
|
"author": {
|
@@ -22,6 +22,7 @@
|
|
22
22
|
"enabled": "true"
|
23
23
|
},
|
24
24
|
"scripts": {
|
25
|
+
"audit": "npm audit",
|
25
26
|
"clean": "shx rm -f *.lock && shx rm -f package-lock.json",
|
26
27
|
"start": "run-p -s utilsrv-run",
|
27
28
|
"app": "run-p -s utilsrv",
|
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: 2021.3.
|
4
|
+
version: 2021.3.2
|
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: 2021-11-
|
11
|
+
date: 2021-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -1482,9 +1482,8 @@ files:
|
|
1482
1482
|
- lib/starter_web/_data/_defaults/categories.yml
|
1483
1483
|
- lib/starter_web/_data/_defaults/colors.yml
|
1484
1484
|
- lib/starter_web/_data/_defaults/font_sizes.yml
|
1485
|
-
- lib/starter_web/_data/_defaults/j1_config.1.yml
|
1486
1485
|
- lib/starter_web/_data/_defaults/j1_config.yml
|
1487
|
-
- lib/starter_web/_data/_defaults/private.
|
1486
|
+
- lib/starter_web/_data/_defaults/private.yml
|
1488
1487
|
- lib/starter_web/_data/_defaults/resources.yml
|
1489
1488
|
- lib/starter_web/_data/apps/carousel.yml
|
1490
1489
|
- lib/starter_web/_data/apps/defaults/carousel.yml
|
@@ -1611,7 +1610,6 @@ files:
|
|
1611
1610
|
- lib/starter_web/_data/pages/builder.yml
|
1612
1611
|
- lib/starter_web/_data/plugins/defaults/paginator.yml
|
1613
1612
|
- lib/starter_web/_data/plugins/paginator.yml
|
1614
|
-
- lib/starter_web/_data/private.default.yml
|
1615
1613
|
- lib/starter_web/_data/private.yml
|
1616
1614
|
- lib/starter_web/_data/resources.yml
|
1617
1615
|
- lib/starter_web/_data/utilities/defaults/util_srv.yml
|
@@ -1,478 +0,0 @@
|
|
1
|
-
# ------------------------------------------------------------------------------
|
2
|
-
# ~/_data/j1_config.yml
|
3
|
-
# J1 Template settings
|
4
|
-
#
|
5
|
-
# Product/Info:
|
6
|
-
# https://jekyll.one
|
7
|
-
#
|
8
|
-
# Copyright (C) 2021 Juergen Adams
|
9
|
-
#
|
10
|
-
# J1 Template is licensed under the MIT License.
|
11
|
-
# For details, see https://jekyll.one
|
12
|
-
# ------------------------------------------------------------------------------
|
13
|
-
|
14
|
-
# environment
|
15
|
-
# ------------------------------------------------------------------------------
|
16
|
-
# Sets the build environment of the website
|
17
|
-
#
|
18
|
-
# values: development|production
|
19
|
-
# default: production
|
20
|
-
#
|
21
|
-
environment: production
|
22
|
-
|
23
|
-
|
24
|
-
# ==============================================================================
|
25
|
-
# THEME configuration
|
26
|
-
#
|
27
|
-
# ------------------------------------------------------------------------------
|
28
|
-
# Sets the default theme used for J1 Template for default
|
29
|
-
#
|
30
|
-
# Note: Themes from Bootswatch cannot used currently as default theme
|
31
|
-
#
|
32
|
-
# ------------------------------------------------------------------------------
|
33
|
-
# theme.name
|
34
|
-
#
|
35
|
-
# values Uno light|Uno dark
|
36
|
-
# default: Uno light
|
37
|
-
# ------------------------------------------------------------------------------
|
38
|
-
# theme.author
|
39
|
-
#
|
40
|
-
# values <string>
|
41
|
-
# default: J1 Team
|
42
|
-
# ------------------------------------------------------------------------------
|
43
|
-
# theme.url
|
44
|
-
#
|
45
|
-
# values <url>
|
46
|
-
# default: https://jekyll.one/
|
47
|
-
# ------------------------------------------------------------------------------
|
48
|
-
theme:
|
49
|
-
name: Uno light
|
50
|
-
author: J1 Team
|
51
|
-
author_url: https://jekyll.one/
|
52
|
-
|
53
|
-
# ------------------------------------------------------------------------------
|
54
|
-
# CSS and SASS settings
|
55
|
-
#
|
56
|
-
css:
|
57
|
-
custom_scss: false
|
58
|
-
custom_css: false
|
59
|
-
|
60
|
-
# ------------------------------------------------------------------------------
|
61
|
-
# Typography settings
|
62
|
-
#
|
63
|
-
typography:
|
64
|
-
rtext: true
|
65
|
-
rtext_size: 300
|
66
|
-
|
67
|
-
|
68
|
-
# ==============================================================================
|
69
|
-
# URL configuration
|
70
|
-
#
|
71
|
-
# ------------------------------------------------------------------------------
|
72
|
-
#
|
73
|
-
# All links will be name-spaced by base_path if defined.
|
74
|
-
# Links in your website should always be prefixed with {{base_path}}
|
75
|
-
# however this value will be dynamically changed depending on your
|
76
|
-
# deployment situation.
|
77
|
-
#
|
78
|
-
# CNAME (http://yourcustomdomain.com)
|
79
|
-
# DO NOT SET base_path
|
80
|
-
# (url's will be prefixed with "/" and work relatively)
|
81
|
-
#
|
82
|
-
# GitHub Pages (http://username.github.io)
|
83
|
-
# DO NOT SET base_path
|
84
|
-
# (url's will be prefixed with "/" and work relatively)
|
85
|
-
#
|
86
|
-
# GitHub Project Pages (http://username.github.io/project-name)
|
87
|
-
#
|
88
|
-
# A GitHub Project site exists in the `gh-pages` branch of one of
|
89
|
-
# your repositories.
|
90
|
-
# REQUIRED! Set base_path to: http://username.github.io/project-name
|
91
|
-
#
|
92
|
-
# CAUTION:
|
93
|
-
# - When in localhost, your site will run from root "/" regardless
|
94
|
-
# of base_path
|
95
|
-
# - Only the following values are falsy: ["", null, false]
|
96
|
-
# - When setting base_path it must be a valid url.
|
97
|
-
# This means always setting the protocol (http|https) or
|
98
|
-
# prefixing with "/"
|
99
|
-
#
|
100
|
-
#base_path:
|
101
|
-
|
102
|
-
# By default, the asset_path is automatically defined relative to
|
103
|
-
# base_path plus the enabled theme, e.g
|
104
|
-
#
|
105
|
-
# [base_path]/assets/themes/[THEME-NAME]
|
106
|
-
#
|
107
|
-
# e.g. /assets/themes/bootstrap
|
108
|
-
#
|
109
|
-
# Override this by defining an absolute path to assets here.
|
110
|
-
# ex:
|
111
|
-
# http://s3.amazonaws.com/yoursite/themes/watermelon/assets
|
112
|
-
#
|
113
|
-
asset_path: /assets/themes/j1
|
114
|
-
app_path: /assets/apps
|
115
|
-
image_path: /assets/images
|
116
|
-
|
117
|
-
# These paths are to the main pages J1 ships with.
|
118
|
-
# Some template helpers refer to these paths
|
119
|
-
#
|
120
|
-
#pages_path: /builder/pages
|
121
|
-
archive_path: /builder/posts/timeline
|
122
|
-
categories_path: /builder/categories
|
123
|
-
tags_path: /builder/tags
|
124
|
-
#atom_path: /atom.xml
|
125
|
-
#rss_path: /rss.xml
|
126
|
-
|
127
|
-
# ------------------------------------------------------------------------------
|
128
|
-
# Common site URLs
|
129
|
-
#
|
130
|
-
about-site-url: /pages/public/about/site/
|
131
|
-
user_info_url: /pages/public/legal/en/privacy/
|
132
|
-
theme_author_url: https://jekyll.one
|
133
|
-
|
134
|
-
|
135
|
-
# ==============================================================================
|
136
|
-
# DATA path configuration settings
|
137
|
-
#
|
138
|
-
# ------------------------------------------------------------------------------
|
139
|
-
runtime_data_path: /assets/data/runtime-data.yml
|
140
|
-
message_catalog_data_path: /assets/data/messages.yml
|
141
|
-
colors_data_path: /assets/data/colors.json
|
142
|
-
font_size_data_path: /assets/data/font_sizes.json
|
143
|
-
country_data_path: /assets/data/countries.json
|
144
|
-
|
145
|
-
|
146
|
-
# ==============================================================================
|
147
|
-
# COOKIE configuration settings
|
148
|
-
#
|
149
|
-
# ------------------------------------------------------------------------------
|
150
|
-
cookies:
|
151
|
-
app_session: j1.app.session
|
152
|
-
user_session: j1.user.session
|
153
|
-
user_state: j1.user.state
|
154
|
-
user_consent: j1.user.consent
|
155
|
-
user_translate: j1.user.translate
|
156
|
-
|
157
|
-
|
158
|
-
# ==============================================================================
|
159
|
-
# PAGE configuration settings
|
160
|
-
#
|
161
|
-
# ------------------------------------------------------------------------------
|
162
|
-
|
163
|
-
# ------------------------------------------------------------------------------
|
164
|
-
# flicker_timeout
|
165
|
-
# ----------------------------------------------------------------------------
|
166
|
-
# Number of milliseconds (ms) the current page is hidden (display: none)
|
167
|
-
# to prevent "DOM flicker" (aka "FOUC": Flash of unstyled content)
|
168
|
-
#
|
169
|
-
# TODO: To be checked if needed
|
170
|
-
#
|
171
|
-
# prettify
|
172
|
-
# ----------------------------------------------------------------------------
|
173
|
-
# If set to true, all generated HTML pages (by Liquid|Jekyll) get
|
174
|
-
# formatted "pretty" by layout "default".
|
175
|
-
#
|
176
|
-
# NOTE: Used for developent mode ONLY
|
177
|
-
# NOTE: See ~/packages/300_template_src/_layouts/default.html
|
178
|
-
# ------------------------------------------------------------------------------
|
179
|
-
flicker_timeout: 150
|
180
|
-
|
181
|
-
# ------------------------------------------------------------------------------
|
182
|
-
# HTML PrettyPrint
|
183
|
-
#
|
184
|
-
prettify: true
|
185
|
-
|
186
|
-
|
187
|
-
# ==============================================================================
|
188
|
-
# USER configuration settings
|
189
|
-
#
|
190
|
-
# ------------------------------------------------------------------------------
|
191
|
-
|
192
|
-
# ------------------------------------------------------------------------------
|
193
|
-
# Default
|
194
|
-
#
|
195
|
-
user:
|
196
|
-
provider: j1
|
197
|
-
provider_site_url: https://jekyll.one
|
198
|
-
provider_home_url: https://jekyll.one
|
199
|
-
provider_blog_url: /pages/public/blog/navigator/
|
200
|
-
provider_member_url: /pages/public/learn/whats_up/
|
201
|
-
provider_privacy_url: /pages/public/legal/en/privacy/
|
202
|
-
user_name: guest
|
203
|
-
status: active
|
204
|
-
provider_membership: guest
|
205
|
-
provider_permissions: [ 'public' ]
|
206
|
-
|
207
|
-
|
208
|
-
# ==============================================================================
|
209
|
-
# FRAMEWORK configuration settings
|
210
|
-
#
|
211
|
-
# ------------------------------------------------------------------------------
|
212
|
-
|
213
|
-
# ------------------------------------------------------------------------------
|
214
|
-
# cards.card-deck (responsive card decks)
|
215
|
-
#
|
216
|
-
# Bootstrap card decks are NOT responsive by default. Additional breakpoint
|
217
|
-
# classes for J1 Template introduce support on card decks for responsiveness.
|
218
|
-
# With the values for `break_on_XX`, the number of cards can be specified
|
219
|
-
# to be shown on a deck per *row*.
|
220
|
-
#
|
221
|
-
# default: no defaults
|
222
|
-
# values: integer (num of cards)
|
223
|
-
#
|
224
|
-
# ------------------------------------------------------------------------------
|
225
|
-
# ------------------------------------------------------------------------------
|
226
|
-
# popovers.trigger (tooltips.trigger)
|
227
|
-
#
|
228
|
-
# How a popover is triggered. You may pass multiple triggers.
|
229
|
-
# Separate them with a space. Trigger `manual` cannot be combined
|
230
|
-
# with any other trigger. 'manual' indicates that the popover will
|
231
|
-
# be triggered programmatically via the .popover('show'), .popover('hide')
|
232
|
-
# and .popover('toggle') methods.
|
233
|
-
#
|
234
|
-
# default: hover
|
235
|
-
# values: click | hover | focus | manual
|
236
|
-
#
|
237
|
-
# ------------------------------------------------------------------------------
|
238
|
-
|
239
|
-
# ------------------------------------------------------------------------------
|
240
|
-
# BOOTSTRAP framework settings
|
241
|
-
#
|
242
|
-
bootstrap:
|
243
|
-
default_theme: bootstrap
|
244
|
-
|
245
|
-
cards:
|
246
|
-
card_deck:
|
247
|
-
break_on_sm: 1
|
248
|
-
break_on_md: 2
|
249
|
-
break_on_lg: 3
|
250
|
-
break_on_xl: 3
|
251
|
-
|
252
|
-
|
253
|
-
tooltips:
|
254
|
-
enabled: true
|
255
|
-
trigger: hover
|
256
|
-
|
257
|
-
popovers:
|
258
|
-
enabled: true
|
259
|
-
trigger: hover
|
260
|
-
|
261
|
-
# ------------------------------------------------------------------------------
|
262
|
-
# HIGHLIGHTER settings
|
263
|
-
#
|
264
|
-
rouge:
|
265
|
-
theme_light: igorpro
|
266
|
-
|
267
|
-
# may github, pastie
|
268
|
-
theme_dark: monokai.sublime
|
269
|
-
|
270
|
-
# ------------------------------------------------------------------------------
|
271
|
-
# SEO settings (optimization)
|
272
|
-
#
|
273
|
-
|
274
|
-
# ------------------------------------------------------------------------------
|
275
|
-
# PRELOAD settings
|
276
|
-
# ------------------------------------------------------------------------------
|
277
|
-
# NOTE:
|
278
|
-
# Specify resources that your page will need very soon, which you want
|
279
|
-
# to start loading early in the page lifecycle, before browsers' main
|
280
|
-
# rendering machinery starts. This may improve the performace for the RENDER
|
281
|
-
# phase to improve the FCP (First Contentful Paint). FCP marks the time
|
282
|
-
# at which the first text or image is shown to the user.
|
283
|
-
# ------------------------------------------------------------------------------
|
284
|
-
# NOTE:
|
285
|
-
# Preloading fonts,the crossorigin attribute is needed to handle
|
286
|
-
# CORS issues.
|
287
|
-
# ------------------------------------------------------------------------------
|
288
|
-
# NOTE:
|
289
|
-
# Preloading applies ONLY if the requested resource is NOT cached (304).
|
290
|
-
# If a resource is already cached (by the browser OR the web server), some
|
291
|
-
# browser (e.g. Chrome) issue WARNINGS, but can be ignored.
|
292
|
-
# ------------------------------------------------------------------------------
|
293
|
-
# INFO:
|
294
|
-
# https://stackoverflow.com/questions/1330825/preloading-font-face-fonts
|
295
|
-
# https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content
|
296
|
-
# https://github.com/GoogleChromeLabs/critters/issues/18 (crossorigin)
|
297
|
-
# ------------------------------------------------------------------------------
|
298
|
-
preload:
|
299
|
-
|
300
|
-
font:
|
301
|
-
preload: false
|
302
|
-
cors: crossorigin
|
303
|
-
fonts: []
|
304
|
-
|
305
|
-
css:
|
306
|
-
preload: true
|
307
|
-
css: [
|
308
|
-
/assets/themes/j1/core/css/themes/uno-light/bootstrap,
|
309
|
-
/assets/themes/j1/core/css/vendor
|
310
|
-
]
|
311
|
-
files: []
|
312
|
-
|
313
|
-
js:
|
314
|
-
preload: true
|
315
|
-
js: [
|
316
|
-
/assets/themes/j1/modules/bmd/js/bootstrap-material-design,
|
317
|
-
/assets/themes/j1/modules/backstretch/js/backstretch,
|
318
|
-
/assets/themes/j1/core/js/template
|
319
|
-
]
|
320
|
-
files: [
|
321
|
-
/assets/themes/j1/adapter/js/attic.js,
|
322
|
-
/assets/themes/j1/adapter/js/logger.js,
|
323
|
-
/assets/themes/j1/adapter/js/bmd.js,
|
324
|
-
/assets/themes/j1/adapter/js/navigator.js
|
325
|
-
]
|
326
|
-
image:
|
327
|
-
preload: false
|
328
|
-
files: [ /assets/images/modules/icons/j1/j1-512x512.png ]
|
329
|
-
|
330
|
-
# ------------------------------------------------------------------------------
|
331
|
-
# PRECONNECT settings
|
332
|
-
# ------------------------------------------------------------------------------
|
333
|
-
# NOTE:
|
334
|
-
# Improve page load speed with preconnect|dns-prefetch for 3rd party
|
335
|
-
# origins. Establishing connections often involves significant time in
|
336
|
-
# slow networks (e.g. mobile 2|3G), particularly when it comes to secure
|
337
|
-
# connections (HTTPS), as it may involve DNS lookups, redirects, and
|
338
|
-
# several round trips to the final server that handles the user's request.
|
339
|
-
# ------------------------------------------------------------------------------
|
340
|
-
preconnect:
|
341
|
-
enabled: true
|
342
|
-
urls: [ "https://bootswatch.com" ]
|
343
|
-
|
344
|
-
# ------------------------------------------------------------------------------
|
345
|
-
# Font AweSome settings
|
346
|
-
#
|
347
|
-
fa:
|
348
|
-
color: default
|
349
|
-
|
350
|
-
# ------------------------------------------------------------------------------
|
351
|
-
# Body style settings
|
352
|
-
#
|
353
|
-
body:
|
354
|
-
scrollbar: false
|
355
|
-
background-color: md_gray_50
|
356
|
-
font-color: md_gray_900
|
357
|
-
font-size: 1em
|
358
|
-
font-weight: 400
|
359
|
-
line-height: 1.5
|
360
|
-
|
361
|
-
|
362
|
-
# ==============================================================================
|
363
|
-
# CONNECTOR configuration settings
|
364
|
-
#
|
365
|
-
# ------------------------------------------------------------------------------
|
366
|
-
|
367
|
-
# ------------------------------------------------------------------------------
|
368
|
-
# COMMENTS settings
|
369
|
-
#
|
370
|
-
# Set 'enabled' to false to turn off globally. Affects all pages independently
|
371
|
-
# from what is set pagewise!
|
372
|
-
# Set 'provider' to the provider you want to use.
|
373
|
-
# ------------------------------------------------------------------------------
|
374
|
-
# hyvor
|
375
|
-
#
|
376
|
-
# site_id: your-website-id
|
377
|
-
# ------------------------------------------------------------------------------
|
378
|
-
# disqus
|
379
|
-
#
|
380
|
-
# site_id: your-disqus-short-name
|
381
|
-
# ------------------------------------------------------------------------------
|
382
|
-
comments:
|
383
|
-
enabled: false
|
384
|
-
provider: hyvor # disqus | hyvor | commento | just-comments
|
385
|
-
|
386
|
-
comments_headline:
|
387
|
-
en: Leave a comment
|
388
|
-
de: Kommentieren
|
389
|
-
|
390
|
-
hyvor:
|
391
|
-
site_id: 'hyvor-site-id'
|
392
|
-
|
393
|
-
disqus:
|
394
|
-
site_id: '<your-site-short-name>'
|
395
|
-
|
396
|
-
# commento: # currently NOT supported
|
397
|
-
# site_id: 'commento-site-id'
|
398
|
-
#
|
399
|
-
# just-comments: # currently NOT supported
|
400
|
-
# site_id: 'just-comments-site-id'
|
401
|
-
|
402
|
-
# facebook: # currently NOT supported
|
403
|
-
# appid: 'facebook-app-id'
|
404
|
-
# num_posts: 5
|
405
|
-
# width: 580
|
406
|
-
# colorscheme: light
|
407
|
-
|
408
|
-
# custom: # currently NOT supported
|
409
|
-
# custom_data:
|
410
|
-
|
411
|
-
# ------------------------------------------------------------------------------
|
412
|
-
# ANALYTICS settings
|
413
|
-
#
|
414
|
-
# Set 'enabled' to false to turn off globally. Affects all pages independently
|
415
|
-
# from what is set pagewise!
|
416
|
-
# Set 'provider' to the provider you want to use.
|
417
|
-
# ------------------------------------------------------------------------------
|
418
|
-
analytics:
|
419
|
-
enabled: false
|
420
|
-
provider: google
|
421
|
-
|
422
|
-
google:
|
423
|
-
tracking_id: '<your-tracking-id>'
|
424
|
-
|
425
|
-
custom:
|
426
|
-
custom_data:
|
427
|
-
|
428
|
-
# ------------------------------------------------------------------------------
|
429
|
-
# ADVERTISING settings
|
430
|
-
#
|
431
|
-
# Set 'enabled' to false to turn off globally. Affects all pages independently
|
432
|
-
# from what is set pagewise!
|
433
|
-
# Set 'provider' to the provider you want to use.
|
434
|
-
# ------------------------------------------------------------------------------
|
435
|
-
advertising:
|
436
|
-
enabled: false
|
437
|
-
provider: google
|
438
|
-
|
439
|
-
google:
|
440
|
-
publisher_id: '<your-publisher-id>'
|
441
|
-
|
442
|
-
custom:
|
443
|
-
custom_data:
|
444
|
-
|
445
|
-
# ------------------------------------------------------------------------------
|
446
|
-
# TRANSLATOR settings
|
447
|
-
#
|
448
|
-
# Set 'enabled' to false to turn off globally. Affects all pages independently
|
449
|
-
# from what is set pagewise!
|
450
|
-
# Set 'provider' to the provider you want to use.
|
451
|
-
# ------------------------------------------------------------------------------
|
452
|
-
translation:
|
453
|
-
enabled: true
|
454
|
-
provider: google
|
455
|
-
|
456
|
-
google:
|
457
|
-
layout: default
|
458
|
-
meta_data: [google-translate]
|
459
|
-
page_language: en
|
460
|
-
translation_languages: [all]
|
461
|
-
|
462
|
-
# ------------------------------------------------------------------------------
|
463
|
-
# SHARING settings (currently NOT supported)
|
464
|
-
#
|
465
|
-
# Settings for sharing helper. Sharing is for things like tweet, plusone,
|
466
|
-
# like, reddit buttons etc. Set 'provider' to the sharing provider you
|
467
|
-
# want to use. Set 'provider' to false to turn sharing off globally.
|
468
|
-
#
|
469
|
-
# Set 'enabled' to false to turn off globally. Affects all pages independently
|
470
|
-
# from what is set pagewise!
|
471
|
-
# Set 'provider' to the provider you want to use.
|
472
|
-
# ------------------------------------------------------------------------------
|
473
|
-
# sharing:
|
474
|
-
# enabled: false
|
475
|
-
# provider:
|
476
|
-
|
477
|
-
# ------------------------------------------------------------------------------
|
478
|
-
# END config
|