j1-template 2023.9.0 → 2023.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/themes/j1/layouts/content_generator_post.html +19 -49
  3. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +185 -192
  4. data/_includes/themes/j1/procedures/posts/create_series_header.proc +1 -14
  5. data/_includes/themes/j1/procedures/posts/pager.proc +39 -46
  6. data/assets/themes/j1/adapter/js/speak2me.js +1 -1
  7. data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +3 -0
  8. data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +1 -1
  9. data/assets/themes/j1/core/js/template.js +58 -43
  10. data/assets/themes/j1/core/js/template.min.js +7 -7
  11. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  12. data/lib/j1/version.rb +1 -1
  13. data/lib/starter_web/README.md +5 -5
  14. data/lib/starter_web/_config.yml +1 -1
  15. data/lib/starter_web/_data/blocks/footer.yml +6 -4
  16. data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +89 -135
  17. data/lib/starter_web/_data/modules/defaults/speak2me.yml +1 -0
  18. data/lib/starter_web/_data/modules/navigator_menu.yml +14 -7
  19. data/lib/starter_web/_data/templates/feed.xml +1 -1
  20. data/lib/starter_web/_plugins/index/lunr.rb +1 -1
  21. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +74 -70
  22. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +110 -84
  23. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-static-site-generators.adoc +49 -33
  24. data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +47 -26
  25. data/lib/starter_web/package.json +1 -1
  26. data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +66 -63
  27. data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +76 -77
  28. data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +63 -64
  29. data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +79 -64
  30. data/lib/starter_web/pages/public/blog/navigator/index.html +55 -99
  31. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +2 -1
  32. data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +39 -29
  33. data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +0 -3
  34. data/lib/starter_web/pages/public/learn/roundtrip/highlghter_rouge.adoc +1 -1
  35. data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +1 -0
  36. data/lib/starter_web/pages/public/learn/roundtrip/modal_extentions.adoc +1 -0
  37. data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +1 -1
  38. data/lib/starter_web/pages/public/learn/roundtrip/responsive_tables.adoc +1 -0
  39. data/lib/starter_web/pages/public/learn/where_to_go.adoc +24 -13
  40. data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +4 -1
  41. data/lib/starter_web/pages/public/legal/en/200_impress.adoc +4 -1
  42. data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +632 -595
  43. data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +12 -3
  44. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  45. data/lib/starter_web/utilsrv/package.json +1 -1
  46. metadata +2 -2
@@ -4,7 +4,7 @@ layout: page
4
4
  title: Navigator
5
5
  tagline: Explore Posts
6
6
 
7
- date: 2022-01-01
7
+ date: 2023-09-20
8
8
  #last_modified: 2023-01-01
9
9
 
10
10
  description: >
@@ -27,10 +27,11 @@ robots:
27
27
  follow: true
28
28
 
29
29
  image:
30
- path: /assets/images/modules/attics/matthaeus-1920x1280.jpg
30
+ path: /assets/images/modules/attics/1920x1280/matthaeus.jpg
31
31
  width: 1920
32
32
  height: 1280
33
33
 
34
+ #tts: false
34
35
  sort: date
35
36
  fab_menu_id: default
36
37
  scrollDynamicPagesTopOnChange: false # do NOT scroll the page to top on content changes
@@ -41,13 +42,26 @@ resources: [ animate, scroller ]
41
42
  resource_options:
42
43
  - attic:
43
44
  slides:
44
- - url: /assets/images/modules/attics/matthaeus-1920x1280.jpg
45
+ - url: /assets/images/modules/attics/1920x1280/matthaeus.jpg
45
46
  alt: Photo by Matthaeus on Unsplash
46
47
  badge:
47
48
  type: unsplash
48
49
  author: Matthaeus
49
50
  href: https://unsplash.com/@matthaeus123
50
51
  ---
52
+ {% comment %} Stackoverflow articles
53
+ ------------------------------------------------------------------------
54
+ https://stackoverflow.com/questions/22763180/assign-an-array-literal-to-a-variable-in-liquid-template
55
+ {% assign my_array = "one|two|three" | split: "|" %}
56
+ ------------------------------------------------------------------------
57
+ {% endcomment %}
58
+
59
+ {% comment %} Debugging
60
+ ------------------------------------------------------------------------
61
+ blog_navigator_options.article_navigator.page_text: {{blog_navigator_options.article_navigator.page_text | debug}}
62
+ ------------------------------------------------------------------------
63
+ {% endcomment %}
64
+
51
65
 
52
66
  {% comment %} Liquid procedures
53
67
  -------------------------------------------------------------------------------- {% endcomment %}
@@ -84,7 +98,6 @@ resource_options:
84
98
 
85
99
  {% assign previewer = blog_navigator_options.previewer %}
86
100
  {% assign paginate = paginator_options.pagination.enabled %}
87
- {% assign scroller = blog_navigator_options.scroller %}
88
101
  {% assign rtext = template_config.typography.rtext %}
89
102
  {% assign page_rtext = page.rtext %}
90
103
  {% assign page_rtext_size = page.rtext_size %}
@@ -97,49 +110,30 @@ resource_options:
97
110
  {% assign rtext_size = 0 %}
98
111
  {% endif %}
99
112
 
100
- {% comment %} language detection (disabled)
113
+ {% comment %} Collect Button Text/Description
101
114
  -------------------------------------------------------------------------------- {% endcomment %}
102
- {% if site.language == "en" %}
103
- {% assign language = "en" %}
104
- {% elsif site.language == "de"%}
105
- {% assign language = "de" %}
106
- {% else %}
107
- {% assign language = "en" %}
108
- {% endif %}
115
+ {% assign home_button_text = blog_navigator_options.button_text.view_pager.home %}
116
+ {% assign category_view_button_text = blog_navigator_options.button_text.view_pager.category_view %}
117
+ {% assign date_view_button_text = blog_navigator_options.button_text.view_pager.date_view %}
118
+ {% assign archive_view_button_text = blog_navigator_options.button_text.view_pager.archive_view %}
119
+ {% assign tag_view_button_text = blog_navigator_options.button_text.view_pager.tag_view %}
109
120
 
121
+ {% assign description_enabled = blog_navigator_options.article_navigator.page_description.enabled %}
122
+ {% assign description_text = blog_navigator_options.article_navigator.page_description.text %}
123
+ {% assign headline_enabled = blog_navigator_options.article_navigator.headline.enabled %}
124
+ {% assign headline_text = blog_navigator_options.article_navigator.headline.text %}
110
125
 
111
126
 
112
- {% if language == "en" %}
113
- {% assign category_view_button_text = blog_navigator_options.button_text.view_selector.category_view.en %}
114
- {% assign date_view_button_text = blog_navigator_options.button_text.view_selector.date_view.en %}
115
- {% assign archive_view_button_text = blog_navigator_options.button_text.view_selector.archive_view.en %}
116
- {% assign tag_view_button_text = blog_navigator_options.button_text.view_selector.tag_view.en %}
117
-
118
- {% assign previewer_headline = blog_navigator_options.article_previewer.page_text.en.headline %}
119
- {% assign navigator_description_text = blog_navigator_options.article_navigator.page_text.en.description %}
120
- {% assign previewer_description_text = blog_navigator_options.article_previewer.page_text.en.description %}
121
- {% endif %}
122
-
123
- {% if language == "de" %}
124
- {% assign category_view_button_text = blog_navigator_options.button_text.view_selector.category_view.de %}
125
- {% assign date_view_button_text = blog_navigator_options.button_text.view_selector.date_view.de %}
126
- {% assign archive_view_button_text = blog_navigator_options.button_text.view_selector.archive_view.de %}
127
- {% assign tag_view_button_text = blog_navigator_options.button_text.view_selector.tag_view.de %}
128
-
129
- {% assign previewer_headline = blog_navigator_options.article_previewer.page_text.de.headline %}
130
- {% assign navigator_description_text = blog_navigator_options.article_navigator.page_text.de.description %}
131
- {% assign previewer_description_text = blog_navigator_options.article_previewer.page_text.de.description %}
132
- {% endif %}
133
-
134
-
135
- {% comment %} Main container
127
+ {% comment %} Main
136
128
  -------------------------------------------------------------------------------- {% endcomment %}
137
- <!-- [INFO ] [j1.layout.content_generator_blog.html ] [Begin content] -->
138
- <div id="main-container" class="container r-text-{{rtext_size}} js-toc-content mb-5">
139
- <!-- Content placed by layouts/content_generator_blog_archive.html -->
129
+ <!-- [INFO ] [blog.navigator.index.html ] [Begin content] -->
130
+ <div id="navigator_content">
131
+
140
132
  <div id="blog_navigator">
141
133
  <div id="article_navigator">
142
134
 
135
+ {% comment %} Generate URLs for all Navigator Views
136
+ ------------------------------------------------------------------------ {% endcomment %}
143
137
  {% include {{get_page_path}} mode='absolute' %}
144
138
  {% capture navigator_path%}{{page_path}}{% endcapture %}
145
139
  {% capture archive_path %}{{navigator_path}}/archive{% endcapture %}
@@ -148,79 +142,41 @@ resource_options:
148
142
  {% capture tag_view %}{{archive_path}}/tagview/{% endcapture %}
149
143
  {% capture all_view %}{{archive_path}}/allview/{% endcapture %}
150
144
 
151
- {% comment %}
152
- ------------------------------------------------------------------------
153
- https://stackoverflow.com/questions/22763180/assign-an-array-literal-to-a-variable-in-liquid-template
154
- {% assign my_array = "one|two|three" | split: "|" %}
155
- ------------------------------------------------------------------------
156
- {% endcomment %}
157
-
158
- {% comment %} Debugging
159
- --------------------------------------------------------------------------------
160
- blog_navigator_options.article_navigator.page_text: {{blog_navigator_options.article_navigator.page_text | debug}}
161
- --------------------------------------------------------------------------------
162
- {% endcomment %}
163
-
145
+ {% comment %} Generate navigation pager
146
+ ------------------------------------------------------------------------ {% endcomment %}
164
147
  <div class="navigator-headline">
165
- <nav class="paginator speak2me-ignore mb-4">
148
+ <nav class="paginator speak2me-ignore">
166
149
  <ul class="pagination raised-z0">
167
- <li class="page-item"><a class="page-link" href="/" title="Home">Home</a></li>
168
- <li class="page-item"><a class="page-link" href="{{category_view}}" alt="View by Category">{{category_view_button_text}}</a></li>
169
- <li class="page-item"><a class="page-link" href="{{date_view}}" alt="View by Date">{{date_view_button_text}}</a></li>
170
- <!-- li class="page-item"><a class="page-link" href="{{tag_view}}" alt="{{tag_view_button_text}}">By Tag</a></li -->
171
- <li class="page-item"><a class="page-link" href="{{all_view}}" alt="View All">{{archive_view_button_text}}</a></li>
150
+ <li class="page-item"><a class="page-link" href="/" title="Back to {{home_button_text}}">{{home_button_text}}</a></li>
151
+ <li class="page-item"><a class="page-link" href="{{category_view}}" title="View by {{category_view_button_text}}">{{category_view_button_text}}</a></li>
152
+ <li class="page-item"><a class="page-link" href="{{date_view}}" title="View by {{date_view_button_text}}">{{date_view_button_text}}</a></li>
153
+ <!-- li class="page-item"><a class="page-link" href="{{tag_view}}" title="View by {{tag_view_button_text}}">{{tag_view_button_text}}</a></li -->
154
+ <li class="page-item"><a class="page-link" href="{{all_view}}" title="View {{archive_view_button_text}}">{{archive_view_button_text}}</a></li>
172
155
  </ul>
173
156
  </nav> <!-- end paginator -->
174
157
  </div> <!-- end navigator headline -->
175
158
 
176
- {% if blog_navigator_options.article_navigator.page_text.enabled %}
177
- <div class="view-description">{{navigator_description_text}}</div>
159
+ {% if description_enabled %}
160
+ <div class="view-description mt-4 mb-4">{{description_text}}</div>
161
+ {% endif %}
162
+
163
+ {% if headline_enabled %}
164
+ <div class="post-headline mt-4 mb-5">
165
+ <h2 id="post_headline" class="notoc">{{headline_text}}</h2>
166
+ </div>
178
167
  {% endif %}
179
168
 
180
169
  </div> <!-- end article_navigator -->
181
170
 
182
- <!-- Add article previewer if paginator is enabled -->
171
+ {% comment %} Generate content section
172
+ ------------------------------------------------------------------------ {% endcomment %}
173
+ <!-- Add article previewer -->
183
174
  {% if paginate %}
184
- <div id="article_previewer">
185
-
186
- <div class="previewer-headline">
187
-
188
- <div class="post-headline">
189
- <h2 id="post-headline" class="notoc mt-4">{{previewer_headline}}</h2>
190
- </div>
191
-
192
- <!-- Add Jekyll Paginator if enabled: {{scroller}} -->
193
- {% if scroller == 'jekyll' %} {% if paginator.total_pages > 1 %}
194
- <nav class="paginator mb-4">
195
- <ul class="pagination raised-z0">
196
- {% if paginator.previous_page %}
197
- <li class="page-item">
198
- <a class="page-link" href="{{paginator.previous_page_path}}#article_navigator">{{paginator_button_newer_posts_text}}</a>
199
- </li>
200
- {% else %}
201
- <li class="page-item disabled"><a href="#void" class="page-link">{{paginator_button_first_post_text}}</a></li>
202
- {% endif %}
203
-
204
- {% if paginator.next_page %}
205
- <li class="page-item">
206
- <a class="page-link" href="{{paginator.next_page_path}}#article_navigator">{{paginator_button_older_posts_text}}</a>
207
- </li>
208
- {% else %}
209
- <li class="page-item disabled"><a href="#void" class="page-link">{{paginator_button_last_post_text}}</a></li>
210
- {% endif %}
211
- </ul>
212
- </nav>
213
- {% endif %} {% endif %}
214
-
215
- {% if scroller == 'jekyll' %} {% if blog_navigator_options.article_previewer.page_text.enabled %}
216
- <div class="view-description mb-3">{{previewer_description_text}}</div>
217
- {% endif %} {% endif %}
218
-
219
- </div>
175
+ <div id="article_previewer" class="mt-5">
220
176
 
221
- <div id="navigator_article_preview">
177
+ <div id="article_preview">
222
178
  <!-- Previewer selected of type: {{previewer}}-->
223
- <div id="preview_content">
179
+ <div id="previewer_{{previewer}}">
224
180
  {% assign posts_collate = paginator.posts %}
225
181
  {% case previewer %}
226
182
  {% when 'list' %}
@@ -1,4 +1,4 @@
1
- [role="mt-4"]
1
+ [role="mt-5"]
2
2
  == The Themes Menu
3
3
 
4
4
  Styles adjust the website's appearance based on the CSS rules and definitions
@@ -30,6 +30,7 @@ that helps a lot to make designs available for an existing site. This API
30
30
  is the base to integrate selectable Bootswatch stylesheets into the J1 Template
31
31
  navigation system.
32
32
 
33
+ [role="mt-4"]
33
34
  === Apply a Style
34
35
 
35
36
  The base for designing pages using the J1 Template is the style Uno, a modern
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: Extensions
3
- title_extention: Jekyll One enhancements for the Asciidoc markup language
4
- tagline: Asciidoc Markup Enhancements
3
+ title_extention: Enhance Asciidoc Markup Language
4
+ tagline: Asciidoc Markup
5
5
 
6
- date: 2020-11-07
6
+ date: 2023-09-01
7
7
  #last_modified: 2023-01-01
8
8
 
9
9
  description: >
@@ -24,6 +24,7 @@ image:
24
24
  width: 1920
25
25
  height: 1280
26
26
 
27
+ tts: false
27
28
  comments: false
28
29
  regenerate: false
29
30
  permalink: /pages/public/learn/roundtrip/asciidoc_extensions/
@@ -62,11 +63,10 @@ resource_options:
62
63
  [role="dropcap"]
63
64
  J1 Template implements some handy Ruby-based enhancements for the markup
64
65
  language Asciidoc. Providing extensions for a Jekyll theme is a unique feature
65
- of Jekyll One compared to other Jekyll themes and templates. All already
66
- implemented Asciidoctor extensions you'll find below. Additional valuable
67
- extensions to the markup language Asciidoc is made especially for documents
68
- of the Jekyll content type *page*, but can be used for posts or collections
69
- as well.
66
+ of Jekyll One compared to other Jekyll themes and templates.
67
+
68
+ [role="mb-4"]
69
+ All already implemented Asciidoctor extensions you'll find below.
70
70
 
71
71
  [TIP]
72
72
  ====
@@ -77,6 +77,11 @@ link:{url-asciidoctor--extensions-manual}[extensions section, {browser-window--n
77
77
  the Asciidoctor user manual.
78
78
  ====
79
79
 
80
+ [role="mt-4"]
81
+ Additional valuable extensions to the markup language Asciidoc is made
82
+ especially for documents of the Jekyll content type *page*, but can be used
83
+ for posts or collections as well.
84
+
80
85
  mdi:clock-time-five-outline[24px, md-gray mt-4 mr-2]
81
86
  *15 Minutes* to read
82
87
 
@@ -90,10 +95,12 @@ J1 Template adds a simple Javascript based functionality for the
90
95
  extension adds an interactive toggle button `VIEW` to the output of a listing
91
96
  block placed to the top right of the example box.
92
97
 
98
+ [role="mb-4"]
93
99
  If a result block `[.result]` is placed under a listing block, clicking the
94
100
  toggle button *view* `VIEW` displays or hide the content given by the
95
101
  result block.
96
102
 
103
+ [role="mb-5"]
97
104
  [TIP]
98
105
  ====
99
106
  The *View Result Extension* is quite helpful for sections discussing
@@ -114,13 +121,14 @@ code elements.
114
121
  [role="mt-5"]
115
122
  == Asciidoc Admonitions
116
123
 
124
+ [role="mb-5]
117
125
  Admonition blocks draw the reader to certain statements by labeling
118
126
  them as priorities displayed in separate blocks. These types of information
119
127
  blocks are called *admonitions*. The AsciiDoc markuplanguage provides five
120
128
  block types shown by the following examples.
121
129
 
122
130
  .Admonition labels
123
- [cols="3a,9a", subs=+macros, options="header", width="100%", role="rtable mt-3"]
131
+ [cols="3a, 9a", subs=+macros, options="header", width="100%", role="rtable mt-3 mb-4"]
124
132
  |===
125
133
  |Name |Description
126
134
 
@@ -152,6 +160,7 @@ All colors for all default admonition blocks set to the standard
152
160
  color set. Find available block types and their colors below.
153
161
  ====
154
162
 
163
+ [role="mr-4]
155
164
  When you want to call attention to a single paragraph, start the first
156
165
  line of the paragraph with the label you want to use. The label must be
157
166
  uppercase and followed by a colon `:`.
@@ -249,6 +258,7 @@ A *single* paragraph can be turned into a blockquote by:
249
258
  -- attribution
250
259
  ----
251
260
 
261
+ [role="mt-5"]
252
262
  "Don't do stupid things twice. The selection is too big for that."
253
263
  -- Jean-Paul Sartre
254
264
 
@@ -269,7 +279,8 @@ paragraph text (multiline)
269
279
  ____
270
280
  ----
271
281
 
272
- Example of a quoted *block*:
282
+ [role="mt-4 mb-4"]
283
+ Example of a quoted *block*.
273
284
 
274
285
  [quote, Monty Python and the Holy Grail]
275
286
  ____
@@ -283,18 +294,13 @@ ____
283
294
  [role="mt-5"]
284
295
  == Lightboxes
285
296
 
286
- A lightbox is, in general, a helper which displays enlarged, almost
287
- screen-filling versions of images while dimming the remainder
288
- of the page. The technique, introduced by Lightbox V2, gained widespread
289
- popularity thanks to its simple style. The term lightbox has been employed
290
- since then for Javascript libraries to support such functionality.
291
-
292
297
  To make the use of the built-in lightbox easier, the J1 Template offers an
293
- Asciidoc extension: the lightBox block macro. The lightbox block macro
298
+ Asciidoc extension: the lightBox block *macro*. The lightbox block macro
294
299
  `lightbox::` embeds one or more images into the output document and puts
295
- the default lightbox for J1 automatically on. The images width and additional
296
- a addtional caption text `caption text` and CSS styles are configurable for
297
- all images using this macro.
300
+ the default lightbox for J1 automatically on.
301
+
302
+ The images width and additional a addtional caption text `caption text`
303
+ and CSS styles are configurable for all images using this macro.
298
304
 
299
305
  .Lightbox block for single images
300
306
  [source, no_template, role="noclip"]
@@ -323,7 +329,7 @@ J1 Gallery to rearrange images and make them fit at their best for the
323
329
  available space.
324
330
  ====
325
331
 
326
- [role="mt-4"]
332
+ [role="mt-5"]
327
333
  === Standalone Images
328
334
 
329
335
  For your convenience and better readability, the image data should be
@@ -348,10 +354,13 @@ to images path `/assets/images`. The base path is automatically added to
348
354
  each image. If you want to use the default asset path for images, a relative
349
355
  path needs to be given like path-to-image `path/to/image`.
350
356
 
351
- WARNING: If an absolute path `/path/to/image` is configured, the base
357
+ [WARNING]
358
+ ====
359
+ If an absolute path `/path/to/image` is configured, the base
352
360
  path gets ignored. This is the default behavior of the Asciidoc Markup
353
361
  processor. If an absolute path is given, the full path to the images
354
362
  used has to be configured.
363
+ ====
355
364
 
356
365
  The group parameter `group` for the lightbox block `lightbox::` is optional.
357
366
  If *no* group parameter is given for a block, the related images are treated
@@ -366,13 +375,13 @@ lightbox::<block_id>[ 800, {<data-images-id>} ]
366
375
  .Lightbox block for standalone images
367
376
  lightbox::images-standalone[ 800, {data-images-standalone} ]
368
377
 
369
- [role="mt-4"]
378
+ [role="mt-5"]
370
379
  === Grouped Images
371
380
 
372
- If more than a single image is given for a lightbox block `lightbox::`,
373
- the images can be grouped to enable a simple sliding functionality through
374
- this group of related images. Enabling this function, the group option
375
- `group` needs to be configured for the block.
381
+ If more than a single image is given for a lightbox `lightbox::`, images
382
+ can be *grouped* to enable a simple sliding functionality through
383
+ related images. Enabling this function, the group option `group` needs to
384
+ be configured for the block.
376
385
 
377
386
  .Lightbox block for grouped images
378
387
  [source, no_template, role="noclip"]
@@ -383,6 +392,7 @@ lightbox::<block_id>[ 400, {<data-images-group_id>}, <group_name> ]
383
392
  .Lightbox block for grouped images
384
393
  lightbox::images-group[ 400, {data-images-group}, group_name ]
385
394
 
395
+
386
396
  [role="mt-5"]
387
397
  == Galleries
388
398
 
@@ -559,7 +569,7 @@ optional. If not given, the icons size `size` is set to default `1x`, the
559
569
  color to *black* and no settings for *modifiers* `modifier` are applied.
560
570
  ====
561
571
 
562
- [role="mt-4"]
572
+ [role="mt-5"]
563
573
  === Font Awesome Icons
564
574
 
565
575
  Font Awesome Icons can be used as inline icons by using the macro *fas* `fas:`
@@ -597,7 +607,7 @@ optional. If not given, the icons size is set to default `1x`, the color
597
607
  to *black* and no settings for modifiers `modifier` are applied.
598
608
  ====
599
609
 
600
- [role="mt-4"]
610
+ [role="mt-5"]
601
611
  === Iconify Icons
602
612
 
603
613
  Iconify Icons can be used as inline icons by using the iconify inline
@@ -84,9 +84,6 @@ classes defined in Bootstrap to customize a layout individually.
84
84
  mdi:clock-time-five-outline[24px, md-gray mt-4 mr-2]
85
85
  *3 Minutes* to read
86
86
 
87
- mdi:clock-time-five-outline[24px, md-gray mt-4 mr-2]
88
- *3 Minutes* to read
89
-
90
87
  // Include sub-documents (if any)
91
88
  // -----------------------------------------------------------------------------
92
89
  include::{documentdir}/themes_bootstrap.asciidoc[]
@@ -97,7 +97,7 @@ To preview *all* themes supported by *J1 Template*, make your selection
97
97
  from the button *AVAILABLE THEMES* below.
98
98
 
99
99
  ++++
100
- <div class="btn-group">
100
+ <div class="btn-group speak2me-ignore">
101
101
  <!-- See: https://stackoverflow.com/questions/47242702/force-bootstrap-dropdown-menu-to-always-display-at-the-bottom-and-allow-it-go-of -->
102
102
  <!-- NOTE: control the behaviour of popper.js for positioning -->
103
103
  <!-- NOTE: set attribute data-flip="false" to open the SELECT list at the BOTTOM of the BUTTON -->
@@ -24,6 +24,7 @@ image:
24
24
  width: 1920
25
25
  height: 1280
26
26
 
27
+ tts: false
27
28
  regenerate: false
28
29
  permalink: /pages/public/learn/roundtrip/mdi_icon_font/
29
30
 
@@ -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
 
@@ -187,7 +187,7 @@ line. No much space is needed!
187
187
  === Parallax Text Carousel
188
188
 
189
189
  [role="mb-4"]
190
- A more eye-minded type of text-based slide show is a parallax text slider. If
190
+ A more visual type of text-based slide show is a parallax text slider. If
191
191
  you want to emphasize your statements focussing the meaning, this kind of a
192
192
  slide show may be interesting. Image-based slide shows may draw off the
193
193
  reader's attention from the text, therefore a pure text-based presentation
@@ -23,6 +23,7 @@ image:
23
23
  width: 1920
24
24
  height: 1280
25
25
 
26
+ tts: false
26
27
  regenerate: false
27
28
  permalink: /pages/public/learn/roundtrip/responsive_tables/
28
29
 
@@ -73,13 +73,17 @@ mdi:clock-time-five-outline[24px, md-gray mr-2]
73
73
 
74
74
  // Include sub-documents (if any)
75
75
  // -----------------------------------------------------------------------------
76
- The crucial first step in finding your way to Jekyll is done. Congratulations.
77
- The *Learn* section contains all you need to expirience what Jekyll and J1
76
+ [role="mt-5"]
77
+ == Important Sections
78
+
79
+ The crucial first step in finding your way to Jekyll is done: congratulations.
80
+ The section *Learn* contains all you need to expirience what Jekyll and J1
78
81
  can do for your new website, for your new static web. You are welcome to spend
79
82
  some time diving into the techniques of creating modern static webs.
80
83
 
81
- [role="mt-5"]
82
- Roundtrip::
84
+ [role="mt-4"]
85
+ === Roundtrip
86
+
83
87
  In this section, you’ll find a tour to show some of the main features of
84
88
  the J1 Template. This trip covers how image data can be managed using
85
89
  J1, some background of the Theme's typography, discuss extensions, and
@@ -91,15 +95,20 @@ If you're interested what J1 Template can do, continue by walking through the
91
95
  roundtrip examples by starting an inspiring tour
92
96
  link:{url-j1-roundtrip--present-images}[from here].
93
97
 
94
- Cheatsheet::
95
- Cheat sheets are concise reference guides or summaries that provide quick
96
- and handy information about a topic or subject. They help you to remember
97
- key concepts, formulas, commands, or other essential details without
98
- consulting extensive documentation or resources. Find convenient quick
99
- references for _YAML_, _Git_ and more. For example, go for the cheatsheet
100
- link:{url-j1--cheatsheet-yaml}[YAML, {browser-window--new}].
98
+ [role="mt-4"]
99
+ === Cheatsheets
100
+
101
+ A cheatsheet is a helper text concise as a reference or summary to provide
102
+ quick and handy information about a topic or subject. They will help you to
103
+ remember key concepts, formulas, commands, or other essential details without
104
+ consulting extensive documentation or resources.
105
+
106
+ Find convenient quick references for _YAML_, _Git_ and more. For example,
107
+ go for the cheatsheet link:{url-j1--cheatsheet-yaml}[YAML, {browser-window--new}].
108
+
109
+ [role="mt-4"]
110
+ === Collections
101
111
 
102
- Collections::
103
112
  Collections are Jekyll’s most powerful and simultaneously least understood
104
113
  feature of the generator. Collections add another possibility, or use-case,
105
114
  outside of Jekyll’s post- and page-publishing functionality. Learn more
@@ -107,7 +116,9 @@ about collections for more powerful static websites. To learn more what
107
116
  collections are, check
108
117
  link:{url-j1--jekyll-collections}[Jekyll Collections, {browser-window--new}].
109
118
 
110
- Tutorials::
119
+ [role="mt-4"]
120
+ === Tutorials
121
+
111
122
  To become more familiar with using J1, go to the tutorial section. Have
112
123
  fun experiencing what Jekyll and J1 can do. A good starting point for using
113
124
  J1 Template is
@@ -57,8 +57,11 @@ resource_options:
57
57
  {% include {{load_attributes}} scope="global" %}
58
58
 
59
59
  ifeval::[{legal-warning} == true]
60
- WARNING: This document *does not* constitute any *legal advice*. It is
60
+ [WARNING]
61
+ ====
62
+ This document *does not* constitute any *legal advice*. It is
61
63
  highly recommended to verify legal aspects and implications.
64
+ ====
62
65
  endif::[]
63
66
 
64
67
 
@@ -60,8 +60,11 @@ resource_options:
60
60
  {% include {{load_attributes}} scope="none" %}
61
61
 
62
62
  ifeval::[{legal-warning} == true]
63
- WARNING: This document *does not* constitute any *legal advice*. It is
63
+ [WARNING]
64
+ ====
65
+ This document *does not* constitute any *legal advice*. It is
64
66
  highly recommended to verify legal aspects and implications.
67
+ ====
65
68
  endif::[]
66
69
 
67
70
  // NOTE