j1-template 2023.8.2 → 2023.9.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/_includes/themes/j1/layouts/content_generator_post.html +19 -49
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +185 -192
- data/_includes/themes/j1/procedures/posts/create_series_header.proc +1 -14
- data/_includes/themes/j1/procedures/posts/pager.proc +39 -46
- data/assets/themes/j1/adapter/js/speak2me.js +1 -1
- data/assets/themes/j1/adapter/js/translator.js +4 -2
- data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.css +31 -26
- data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +2 -2
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +31 -26
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +2 -2
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +37 -29
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +3 -3
- data/assets/themes/j1/core/js/template.js +58 -43
- 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 +1 -1
- data/lib/starter_web/Gemfile +2 -2
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/blocks/footer.yml +6 -4
- data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +89 -135
- data/lib/starter_web/_data/modules/defaults/speak2me.yml +1 -0
- data/lib/starter_web/_data/modules/justifiedGallery.yml +3 -3
- data/lib/starter_web/_data/modules/navigator_menu.yml +14 -7
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +74 -70
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +110 -84
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-static-site-generators.adoc +49 -33
- data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +47 -26
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +66 -63
- data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +76 -77
- data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +63 -64
- data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +79 -64
- data/lib/starter_web/pages/public/blog/navigator/index.html +55 -99
- data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +6 -2
- data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +59 -35
- data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +4 -4
- data/lib/starter_web/pages/public/learn/roundtrip/highlghter_rouge.adoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +28 -12
- data/lib/starter_web/pages/public/learn/roundtrip/lunr_search.adoc +12 -4
- data/lib/starter_web/pages/public/learn/roundtrip/modal_extentions.adoc +5 -1
- data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +512 -470
- data/lib/starter_web/pages/public/learn/roundtrip/present_videos.adoc +20 -6
- data/lib/starter_web/pages/public/learn/roundtrip/responsive_tables.adoc +5 -2
- data/lib/starter_web/pages/public/learn/where_to_go.adoc +24 -13
- data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +4 -1
- data/lib/starter_web/pages/public/legal/en/200_impress.adoc +4 -1
- data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +632 -595
- data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +12 -3
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +2 -2
@@ -158,10 +158,13 @@ In this document, there are several fields, like `title`, `tagline`, or
|
|
158
158
|
fields are available, like `tags` or `categories` that can be used for
|
159
159
|
more specific searches based on `identifiers`.
|
160
160
|
|
161
|
-
NOTE
|
161
|
+
[NOTE]
|
162
|
+
====
|
163
|
+
The document *content* is collected by the (intrinsic) field `body`.
|
162
164
|
To limit the index data loaded by the browser, the body field is removed from
|
163
165
|
a document. The `body` field not available as an *explicit* field for searches,
|
164
166
|
but the *content* is still fully searchable.
|
167
|
+
====
|
165
168
|
|
166
169
|
To do a simple full-text search as well as more specific searches, the
|
167
170
|
QuickSearch core engine Lunr offers a query language, a DSL (domain-specific
|
@@ -243,8 +246,11 @@ The above example will match documents that contain either `jekyll` *OR*
|
|
243
246
|
`tutorial`. Documents that contain _both_ will increase the score, and those
|
244
247
|
documents are returned first.
|
245
248
|
|
246
|
-
NOTE
|
249
|
+
[NOTE]
|
250
|
+
====
|
251
|
+
Comparing to a Google search (terms are combined at Google by a
|
247
252
|
logical `AND`) a Quicksearch combines the terms by an `OR`.
|
253
|
+
====
|
248
254
|
|
249
255
|
To combine search terms in a QuickSearch query by a logical *AND*, the terms
|
250
256
|
could be prepended by a plus sign (`+`) to mark them as for the QuickSearch
|
@@ -267,13 +273,15 @@ beginning with `Jek`:
|
|
267
273
|
jek*
|
268
274
|
----
|
269
275
|
|
270
|
-
NOTE
|
276
|
+
[NOTE]
|
277
|
+
====
|
278
|
+
Language grammar rules are not relevant for searches. For simplification,
|
271
279
|
all words (terms) are transformed to lower case. As a result, the word
|
272
280
|
`Jekyll` is the same as `jekyll` from a search-engines perspective. Language
|
273
281
|
variations of `Jekyll's` or plurals like `Generators` are reduced
|
274
282
|
to their base form. For searches, don't take care of grammar rules but the
|
275
283
|
spelling. If you're unsure about the spelling of a word, use wildcards.
|
276
|
-
|
284
|
+
====
|
277
285
|
|
278
286
|
=== Fields
|
279
287
|
|
@@ -25,6 +25,7 @@ image:
|
|
25
25
|
width: 1920
|
26
26
|
height: 1280
|
27
27
|
|
28
|
+
tts: false
|
28
29
|
regenerate: false
|
29
30
|
permalink: /pages/public/learn/roundtrip/modals/
|
30
31
|
|
@@ -82,8 +83,11 @@ Modals are a great choice to bring the user's attention. Using the J1 Template
|
|
82
83
|
enhanced modal styles, emotional weight is added to the information displayed.
|
83
84
|
Ranging from an info level, a simple warning to critical messages.
|
84
85
|
|
85
|
-
TIP
|
86
|
+
[TIP]
|
87
|
+
====
|
88
|
+
For more information on how to use Bootstrap’s JavaScript modal
|
86
89
|
plugin, refer to: link:{url-bs-docs--components-modal}[Bootstrap Docs, {browser-window--new}].
|
90
|
+
====
|
87
91
|
|
88
92
|
// include::{documentdir}/tables/bs_modal_examples.asciidoc[]
|
89
93
|
include::{documentdir}/410_table_bs_modal_examples.asciidoc[]
|