j1-template 2021.3.0 → 2021.3.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 +4 -4
- data/assets/data/private.json +49 -49
- data/assets/themes/j1/adapter/js/scroller.js +285 -285
- data/assets/themes/j1/core/js/template.js +8753 -8753
- data/assets/themes/j1/core/js/template.min.js +7 -7
- data/assets/themes/j1/core/js/template.min.js.map +1 -1
- data/lib/j1/version.rb +3 -3
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/_defaults/j1_config.1.yml +478 -0
- 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 +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/600_quicksearch.adoc +6 -6
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +3 -2
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.1'
|
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.1'
|
57
57
|
|
58
58
|
# ------------------------------------------------------------------------------
|
59
59
|
# PRODUCTION: Gem needed for the Jekyll and J1 prod environment
|
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.1
|
57
57
|
|
58
58
|
# version
|
59
59
|
# ------------------------------------------------------------------------------
|
@@ -0,0 +1,478 @@
|
|
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
|
@@ -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.1
|
437
437
|
:j1--site-name: Jekyll One
|
438
438
|
end::products[]
|
439
439
|
|
@@ -424,9 +424,9 @@ roundtrip. More details of the most common elements of Bootstrap can be found
|
|
424
424
|
on the previewer for a theme. Have a look at the
|
425
425
|
link:{url-previewer--theme}[Theme previewer].
|
426
426
|
|
427
|
-
To make things real for your new site, go for *Web in a day*. This tutorial
|
428
|
-
guides you through all the steps on how to build a website. Your site using
|
429
|
-
Jekyll and the template system J1. It's a pleasant journey to learn what
|
430
|
-
modern static webs can offer today.
|
431
|
-
|
432
|
-
Start your journey from here: link:{url-j1-kickstarter--web-in-a-day}[Web in a day, {browser-window--new}].
|
427
|
+
// To make things real for your new site, go for *Web in a day*. This tutorial
|
428
|
+
// guides you through all the steps on how to build a website. Your site using
|
429
|
+
// Jekyll and the template system J1. It's a pleasant journey to learn what
|
430
|
+
// modern static webs can offer today.
|
431
|
+
//
|
432
|
+
// Start your journey from here: link:{url-j1-kickstarter--web-in-a-day}[Web in a day, {browser-window--new}].
|
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.1
|
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-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -1482,6 +1482,7 @@ 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
|
1485
1486
|
- lib/starter_web/_data/_defaults/j1_config.yml
|
1486
1487
|
- lib/starter_web/_data/_defaults/private.default.yml
|
1487
1488
|
- lib/starter_web/_data/_defaults/resources.yml
|