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
@@ -62,7 +62,7 @@
|
|
62
62
|
# ----------------------------------------------------------------------------
|
63
63
|
*/
|
64
64
|
/*!
|
65
|
-
* Bootstrap v5.3.
|
65
|
+
* Bootstrap v5.3.2 (https://getbootstrap.com/)
|
66
66
|
* Copyright 2011-2023 The Bootstrap Authors
|
67
67
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
68
68
|
*/
|
@@ -161,6 +161,7 @@
|
|
161
161
|
--bs-link-hover-color: #73838b;
|
162
162
|
--bs-link-hover-color-rgb: 115, 131, 139;
|
163
163
|
--bs-code-color: #212121;
|
164
|
+
--bs-highlight-color: #e0e0e0;
|
164
165
|
--bs-highlight-bg: #fffbd8;
|
165
166
|
--bs-border-width: 1px;
|
166
167
|
--bs-border-style: solid;
|
@@ -231,6 +232,8 @@
|
|
231
232
|
--bs-link-color-rgb: 174, 188, 196;
|
232
233
|
--bs-link-hover-color-rgb: 190, 201, 208;
|
233
234
|
--bs-code-color: #7a7a7a;
|
235
|
+
--bs-highlight-color: #e0e0e0;
|
236
|
+
--bs-highlight-bg: #665e18;
|
234
237
|
--bs-border-color: #616161;
|
235
238
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
236
239
|
--bs-form-valid-color: #94cf96;
|
@@ -352,6 +355,7 @@ small, .small {
|
|
352
355
|
|
353
356
|
mark, .mark {
|
354
357
|
padding: 0.1875em;
|
358
|
+
color: var(--bs-highlight-color);
|
355
359
|
background-color: var(--bs-highlight-bg); }
|
356
360
|
|
357
361
|
sub,
|
@@ -1518,16 +1522,16 @@ progress {
|
|
1518
1522
|
--bs-table-bg-type: initial;
|
1519
1523
|
--bs-table-color-state: initial;
|
1520
1524
|
--bs-table-bg-state: initial;
|
1521
|
-
--bs-table-color: var(--bs-
|
1525
|
+
--bs-table-color: var(--bs-emphasis-color);
|
1522
1526
|
--bs-table-bg: #455a64;
|
1523
1527
|
--bs-table-border-color: #616161;
|
1524
1528
|
--bs-table-accent-bg: transparent;
|
1525
|
-
--bs-table-striped-color: var(--bs-
|
1526
|
-
--bs-table-striped-bg: rgba(
|
1527
|
-
--bs-table-active-color: var(--bs-
|
1528
|
-
--bs-table-active-bg: rgba(
|
1529
|
-
--bs-table-hover-color: var(--bs-
|
1530
|
-
--bs-table-hover-bg: rgba(
|
1529
|
+
--bs-table-striped-color: var(--bs-emphasis-color);
|
1530
|
+
--bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
|
1531
|
+
--bs-table-active-color: var(--bs-emphasis-color);
|
1532
|
+
--bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
|
1533
|
+
--bs-table-hover-color: var(--bs-emphasis-color);
|
1534
|
+
--bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
|
1531
1535
|
width: 100%;
|
1532
1536
|
margin-bottom: 1rem;
|
1533
1537
|
vertical-align: top;
|
@@ -1582,7 +1586,7 @@ progress {
|
|
1582
1586
|
.table-primary {
|
1583
1587
|
--bs-table-color: #000;
|
1584
1588
|
--bs-table-bg: #e4e9eb;
|
1585
|
-
--bs-table-border-color: #
|
1589
|
+
--bs-table-border-color: #b6babc;
|
1586
1590
|
--bs-table-striped-bg: #d9dddf;
|
1587
1591
|
--bs-table-striped-color: #000;
|
1588
1592
|
--bs-table-active-bg: #cdd2d4;
|
@@ -1595,7 +1599,7 @@ progress {
|
|
1595
1599
|
.table-secondary {
|
1596
1600
|
--bs-table-color: #000;
|
1597
1601
|
--bs-table-bg: #dadee0;
|
1598
|
-
--bs-table-border-color: #
|
1602
|
+
--bs-table-border-color: #aeb2b3;
|
1599
1603
|
--bs-table-striped-bg: #cfd3d5;
|
1600
1604
|
--bs-table-striped-color: #000;
|
1601
1605
|
--bs-table-active-bg: #c4c8ca;
|
@@ -1608,7 +1612,7 @@ progress {
|
|
1608
1612
|
.table-success {
|
1609
1613
|
--bs-table-color: #000;
|
1610
1614
|
--bs-table-bg: #dbefdc;
|
1611
|
-
--bs-table-border-color: #
|
1615
|
+
--bs-table-border-color: #afbfb0;
|
1612
1616
|
--bs-table-striped-bg: #d0e3d1;
|
1613
1617
|
--bs-table-striped-color: #000;
|
1614
1618
|
--bs-table-active-bg: #c5d7c6;
|
@@ -1621,7 +1625,7 @@ progress {
|
|
1621
1625
|
.table-info {
|
1622
1626
|
--bs-table-color: #000;
|
1623
1627
|
--bs-table-bg: #ccf2f6;
|
1624
|
-
--bs-table-border-color: #
|
1628
|
+
--bs-table-border-color: #a3c2c5;
|
1625
1629
|
--bs-table-striped-bg: #c2e6ea;
|
1626
1630
|
--bs-table-striped-color: #000;
|
1627
1631
|
--bs-table-active-bg: #b8dadd;
|
@@ -1634,7 +1638,7 @@ progress {
|
|
1634
1638
|
.table-warning {
|
1635
1639
|
--bs-table-color: #000;
|
1636
1640
|
--bs-table-bg: #fffbd8;
|
1637
|
-
--bs-table-border-color: #
|
1641
|
+
--bs-table-border-color: #ccc9ad;
|
1638
1642
|
--bs-table-striped-bg: #f2eecd;
|
1639
1643
|
--bs-table-striped-color: #000;
|
1640
1644
|
--bs-table-active-bg: #e6e2c2;
|
@@ -1647,7 +1651,7 @@ progress {
|
|
1647
1651
|
.table-danger {
|
1648
1652
|
--bs-table-color: #000;
|
1649
1653
|
--bs-table-bg: #fdd9d7;
|
1650
|
-
--bs-table-border-color: #
|
1654
|
+
--bs-table-border-color: #caaeac;
|
1651
1655
|
--bs-table-striped-bg: #f0cecc;
|
1652
1656
|
--bs-table-striped-color: #000;
|
1653
1657
|
--bs-table-active-bg: #e4c3c2;
|
@@ -1660,7 +1664,7 @@ progress {
|
|
1660
1664
|
.table-light {
|
1661
1665
|
--bs-table-color: #fff;
|
1662
1666
|
--bs-table-bg: #b0bec5;
|
1663
|
-
--bs-table-border-color: #
|
1667
|
+
--bs-table-border-color: #c0cbd1;
|
1664
1668
|
--bs-table-striped-bg: #b4c1c8;
|
1665
1669
|
--bs-table-striped-color: #000;
|
1666
1670
|
--bs-table-active-bg: #b8c5cb;
|
@@ -1673,7 +1677,7 @@ progress {
|
|
1673
1677
|
.table-dark {
|
1674
1678
|
--bs-table-color: #fff;
|
1675
1679
|
--bs-table-bg: #37474f;
|
1676
|
-
--bs-table-border-color: #
|
1680
|
+
--bs-table-border-color: #5f6c72;
|
1677
1681
|
--bs-table-striped-bg: #415058;
|
1678
1682
|
--bs-table-striped-color: #fff;
|
1679
1683
|
--bs-table-active-bg: #4b5961;
|
@@ -1930,6 +1934,7 @@ textarea.form-control-lg {
|
|
1930
1934
|
|
1931
1935
|
.form-check-input {
|
1932
1936
|
--bs-form-check-bg: #fff;
|
1937
|
+
flex-shrink: 0;
|
1933
1938
|
width: 1em;
|
1934
1939
|
height: 1em;
|
1935
1940
|
margin-top: 0.25em;
|
@@ -2045,7 +2050,7 @@ textarea.form-control-lg {
|
|
2045
2050
|
height: 0.5rem;
|
2046
2051
|
color: transparent;
|
2047
2052
|
cursor: pointer;
|
2048
|
-
background-color: var(--bs-
|
2053
|
+
background-color: var(--bs-secondary-bg);
|
2049
2054
|
border-color: transparent;
|
2050
2055
|
border-radius: 1rem; }
|
2051
2056
|
.form-range::-moz-range-thumb {
|
@@ -2066,7 +2071,7 @@ textarea.form-control-lg {
|
|
2066
2071
|
height: 0.5rem;
|
2067
2072
|
color: transparent;
|
2068
2073
|
cursor: pointer;
|
2069
|
-
background-color: var(--bs-
|
2074
|
+
background-color: var(--bs-secondary-bg);
|
2070
2075
|
border-color: transparent;
|
2071
2076
|
border-radius: 1rem; }
|
2072
2077
|
.form-range:disabled {
|
@@ -2797,7 +2802,7 @@ textarea.form-control-lg {
|
|
2797
2802
|
--bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
|
2798
2803
|
--bs-dropdown-divider-bg: #616161;
|
2799
2804
|
--bs-dropdown-divider-margin-y: 0.5rem;
|
2800
|
-
--bs-dropdown-box-shadow:
|
2805
|
+
--bs-dropdown-box-shadow: var(--bs-box-shadow);
|
2801
2806
|
--bs-dropdown-link-color: #fff;
|
2802
2807
|
--bs-dropdown-link-hover-color: #fff;
|
2803
2808
|
--bs-dropdown-link-hover-bg: #78909c;
|
@@ -4504,7 +4509,7 @@ textarea.form-control-lg {
|
|
4504
4509
|
--bs-modal-border-color: #616161;
|
4505
4510
|
--bs-modal-border-width: var(--bs-border-width);
|
4506
4511
|
--bs-modal-border-radius: var(--bs-border-radius-lg);
|
4507
|
-
--bs-modal-box-shadow:
|
4512
|
+
--bs-modal-box-shadow: var(--bs-box-shadow-sm);
|
4508
4513
|
--bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
|
4509
4514
|
--bs-modal-header-padding-x: 1rem;
|
4510
4515
|
--bs-modal-header-padding-y: 1rem;
|
@@ -4624,7 +4629,7 @@ textarea.form-control-lg {
|
|
4624
4629
|
@media (min-width: 576px) {
|
4625
4630
|
.modal {
|
4626
4631
|
--bs-modal-margin: 1.75rem;
|
4627
|
-
--bs-modal-box-shadow:
|
4632
|
+
--bs-modal-box-shadow: var(--bs-box-shadow); }
|
4628
4633
|
.modal-dialog {
|
4629
4634
|
max-width: var(--bs-modal-width);
|
4630
4635
|
margin-right: auto;
|
@@ -4834,7 +4839,7 @@ textarea.form-control-lg {
|
|
4834
4839
|
--bs-popover-border-color: var(--bs-border-color-translucent);
|
4835
4840
|
--bs-popover-border-radius: var(--bs-border-radius-lg);
|
4836
4841
|
--bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
|
4837
|
-
--bs-popover-box-shadow:
|
4842
|
+
--bs-popover-box-shadow: var(--bs-box-shadow);
|
4838
4843
|
--bs-popover-header-padding-x: 1rem;
|
4839
4844
|
--bs-popover-header-padding-y: 0.5rem;
|
4840
4845
|
--bs-popover-header-font-size: 1rem;
|
@@ -5207,7 +5212,7 @@ textarea.form-control-lg {
|
|
5207
5212
|
--bs-offcanvas-bg: var(--bs-body-bg);
|
5208
5213
|
--bs-offcanvas-border-width: var(--bs-border-width);
|
5209
5214
|
--bs-offcanvas-border-color: #616161;
|
5210
|
-
--bs-offcanvas-box-shadow:
|
5215
|
+
--bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
|
5211
5216
|
--bs-offcanvas-transition: transform 0.3s ease-in-out;
|
5212
5217
|
--bs-offcanvas-title-line-height: 1.5; }
|
5213
5218
|
|
@@ -6052,13 +6057,13 @@ textarea.form-control-lg {
|
|
6052
6057
|
display: none !important; }
|
6053
6058
|
|
6054
6059
|
.shadow {
|
6055
|
-
box-shadow:
|
6060
|
+
box-shadow: var(--bs-box-shadow) !important; }
|
6056
6061
|
|
6057
6062
|
.shadow-sm {
|
6058
|
-
box-shadow:
|
6063
|
+
box-shadow: var(--bs-box-shadow-sm) !important; }
|
6059
6064
|
|
6060
6065
|
.shadow-lg {
|
6061
|
-
box-shadow:
|
6066
|
+
box-shadow: var(--bs-box-shadow-lg) !important; }
|
6062
6067
|
|
6063
6068
|
.shadow-none {
|
6064
6069
|
box-shadow: none !important; }
|