j1-template 2023.2.0 → 2023.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -57,7 +57,7 @@
57
57
  <id>{{ page.url | absolute_url | xml_escape }}</id>
58
58
  <post_limited>{{ limit_posts }}</post_limited>
59
59
  <template_name>J1 Theme</template_name>
60
- <template_version>2023.2.0</template_version>
60
+ <template_version>2023.2.1</template_version>
61
61
 
62
62
  {% assign title = site.title | default: site.name %}
63
63
  {% if page.collection != "posts" %}
@@ -391,6 +391,6 @@ end
391
391
 
392
392
  module Jekyll
393
393
  module J1LunrSearch
394
- VERSION = '2023.2.0'
394
+ VERSION = '2023.2.1'
395
395
  end
396
396
  end
@@ -11,7 +11,7 @@ image:
11
11
  height: 1280
12
12
  alt: Cookies - Good to know
13
13
 
14
- fab_menu_id: page_ctrl
14
+ fab_menu_id: open_toc
15
15
  comments: false
16
16
  regenerate: false
17
17
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1",
4
- "version": "2023.2.0",
4
+ "version": "2023.2.1",
5
5
  "description": "J1 Theme Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -27,7 +27,7 @@ image:
27
27
  personalization: false
28
28
  comments: false
29
29
  exclude_from_search: false
30
- fab_menu_id: page_ctrl
30
+ fab_menu_id: open_toc
31
31
  scrollbar: false
32
32
  toc: true
33
33
  regenerate: false
@@ -25,7 +25,7 @@ image:
25
25
  personalization: false
26
26
  comments: false
27
27
  exclude_from_search: false
28
- fab_menu_id: page_ctrl
28
+ fab_menu_id: open_toc
29
29
  scrollbar: false
30
30
  toc: true
31
31
  regenerate: false
@@ -22,7 +22,7 @@ image:
22
22
  alt: Photo by Markus Spiske on Unsplash
23
23
 
24
24
  flowtext: false
25
- fab_menu_id: page_ctrl
25
+ fab_menu_id: open_toc
26
26
  scrollbar: true
27
27
 
28
28
  regenerate: false
@@ -18,7 +18,7 @@ image:
18
18
  alt: Photo by Clem Onojeghuo on Unsplash
19
19
 
20
20
  comments: false
21
- fab_menu_id: page_ctrl
21
+ fab_menu_id: open_toc
22
22
  scrollbar: false
23
23
  regenerate: false
24
24
  permalink: /pages/public/previewer/current_theme/
@@ -1686,11 +1686,11 @@ ifeval::[{navs} == true]
1686
1686
  == Navs
1687
1687
 
1688
1688
  Navigation available in Bootstrap shares general markup and styles, from the
1689
- base .nav class to the active and disabled states. Swap modifier classes to
1689
+ base `.nav` class to the active and disabled states. Swap modifier classes to
1690
1690
  switch between each style.
1691
1691
 
1692
- The base .nav component is built with a flexbox and provides a strong foundation
1693
- for building all navigation components. It includes some style
1692
+ The base `.nav` component is built with a flexbox and provides a strong
1693
+ foundation for building all navigation components. It includes some style
1694
1694
  overrides (for working with lists), link padding for larger hit areas,
1695
1695
  and basic disabled styling.
1696
1696
 
@@ -1700,51 +1700,43 @@ link:{url-bs-docs--components-navs}[Bootstrap Docs {char-middot} Navs, {browser-
1700
1700
  ifeval::[{navs_tabs} == true]
1701
1701
  === Tabs
1702
1702
 
1703
- Tabs takes the basic nav from above and adds the .nav-tabs class to generate
1704
- a tabbed interface. Use them to create tabbable regions with our tab
1703
+ Tabs takes the basic nav from above and adds the `.nav-tabs` class to generate
1704
+ a tabbed interface. Use them to create tabbable regions with the BS5 tab
1705
1705
  JavaScript plugin.
1706
1706
 
1707
1707
  ++++
1708
1708
  <div class="doc-example mb-3">
1709
- <ul class="nav nav-tabs mb-3">
1710
- <li class="nav-item">
1711
- <a class="link-no-decoration nav-link active" data-bs-toggle="tab" href="#home">Home</a>
1709
+
1710
+ <ul id="myTab" class="nav nav-tabs mb-3" role="tablist">
1711
+ <li class="nav-item mr-1" role="presentation">
1712
+ <button id="home-tab" class="nav-link active" data-bs-toggle="tab" data-bs-target="#home-tab-pane" type="button" role="tab" aria-controls="home-tab-pane" aria-selected="true">Home</button>
1712
1713
  </li>
1713
- <li class="nav-item">
1714
- <a class="link-no-decoration nav-link" data-bs-toggle="tab" href="#profile">Profile</a>
1714
+ <li class="nav-item mr-1" role="presentation">
1715
+ <button id="profile-tab" class="nav-link" data-bs-toggle="tab" data-bs-target="#profile-tab-pane" type="button" role="tab" aria-controls="profile-tab-pane" aria-selected="false" tabindex="-1">Profile</button>
1715
1716
  </li>
1716
- <li class="nav-item dropdown">
1717
- <a href="javascript:void(0)" class="nav-link dropdown-toggle" data-bs-toggle="dropdown"
1718
- role="button"
1719
- aria-haspopup="true" aria-expanded="false">
1720
- Dropdown
1721
- </a>
1722
- <div class="dropdown-menu">
1723
- <a href="javascript:void(0)" class="dropdown-item">Action</a>
1724
- <a href="javascript:void(0)" class="dropdown-item">Another action</a>
1725
- <a href="javascript:void(0)" class="dropdown-item">Something else here</a>
1726
- <div class="dropdown-divider"></div>
1727
- <a href="javascript:void(0)" class="dropdown-item">Separated link</a>
1728
- </div>
1717
+ <li class="nav-item mr-1" role="presentation">
1718
+ <button id="contact-tab" class="nav-link" data-bs-toggle="tab" data-bs-target="#contact-tab-pane" type="button" role="tab" aria-controls="contact-tab-pane" aria-selected="false" tabindex="-1">Contact</button>
1729
1719
  </li>
1730
- <li class="nav-item">
1731
- <a href="javascript:void(0)" class="nav-link disabled">Disabled</a>
1720
+ <li class="nav-item mr-1" role="presentation">
1721
+ <button id="disabled-tab" class="nav-link" data-bs-toggle="tab" data-bs-target="#disabled-tab-pane" type="button" role="tab" aria-controls="disabled-tab-pane" aria-selected="false" disabled="" tabindex="-1">Disabled</button>
1732
1722
  </li>
1733
1723
  </ul>
1724
+
1734
1725
  <div id="myTabContent" class="tab-content">
1735
- <div class="tab-pane fade active show" id="home">
1736
- <p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
1726
+ <div id="home-tab-pane" class="tab-pane fade active show" role="tabpanel" aria-labelledby="home-tab" tabindex="0">
1727
+ <p>This is some placeholder content the <strong>Home tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1737
1728
  </div>
1738
- <div class="tab-pane fade" id="profile">
1739
- <p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p>
1729
+ <div id="profile-tab-pane" class="tab-pane fade" role="tabpanel" aria-labelledby="profile-tab" tabindex="0">
1730
+ <p>This is some placeholder content the <strong>Profile tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1740
1731
  </div>
1741
- <div class="tab-pane fade" id="dropdown1">
1742
- <p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p>
1732
+ <div id="contact-tab-pane" class="tab-pane fade" role="tabpanel" aria-labelledby="contact-tab" tabindex="0">
1733
+ <p>This is some placeholder content the <strong>Contact tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1743
1734
  </div>
1744
- <div class="tab-pane fade" id="dropdown2">
1745
- <p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p>
1735
+ <div id="disabled-tab-pane" class="tab-pane fade" role="tabpanel" aria-labelledby="disabled-tab" tabindex="0">
1736
+ <p>This is some placeholder content the <strong>Disabled tab's</strong> associated content.</p>
1746
1737
  </div>
1747
1738
  </div>
1739
+
1748
1740
  </div>
1749
1741
  ++++
1750
1742
  endif::[]
@@ -1752,61 +1744,41 @@ endif::[]
1752
1744
  ifeval::[{navs_pills} == true]
1753
1745
  === Pills
1754
1746
 
1755
- Take that same HTML as Tabs, but use .nav-pills class instead.
1747
+ Take that same HTML as Tabs, but use `.nav-pills` class instead.
1756
1748
 
1757
1749
  ++++
1758
1750
  <div class="doc-example mb-3">
1759
- <div class="row mb-5">
1760
1751
 
1761
- <div class="col-md-6 p-0">
1762
- <h4 class="notoc">Standard Pills</h4>
1763
- <ul class="nav nav-pills">
1764
- <li class="nav-item mr-1 mb-2">
1765
- <a href="javascript:void(0)" class="nav-link active">Active</a>
1766
- </li>
1767
- <li class="nav-item dropdown mr-1">
1768
- <a href="javascript:void(0)" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
1769
- <div class="dropdown-menu">
1770
- <a href="javascript:void(0)" class="dropdown-item">Action</a>
1771
- <a href="javascript:void(0)" class="dropdown-item">Another action</a>
1772
- <a href="javascript:void(0)" class="dropdown-item">Something else here</a>
1773
- <div class="dropdown-divider"></div>
1774
- <a href="javascript:void(0)" class="dropdown-item">Separated link</a>
1775
- </div>
1776
- </li>
1777
- <li class="nav-item mr-1 mb-2">
1778
- <a href="javascript:void(0)" class="nav-link">Link</a>
1779
- </li>
1780
- <li class="nav-item mr-1 mb-2">
1781
- <a href="javascript:void(0)" class="nav-link disabled">Disabled</a>
1782
- </li>
1783
- </ul>
1752
+ <ul id="pills-tab" class="nav nav-pills mb-3" role="tablist">
1753
+ <li class="nav-item mr-1" role="presentation">
1754
+ <button id="pills-home-tab" class="nav-link active" data-bs-toggle="pill" data-bs-target="#pills-home" type="button" role="tab" aria-controls="pills-home" aria-selected="true">Home</button>
1755
+ </li>
1756
+ <li class="nav-item mr-1" role="presentation">
1757
+ <button id="pills-profile-tab" class="nav-link" data-bs-toggle="pill" data-bs-target="#pills-profile" type="button" role="tab" aria-controls="pills-profile" aria-selected="false" tabindex="-1">Profile</button>
1758
+ </li>
1759
+ <li class="nav-item mr-1" role="presentation">
1760
+ <button id="pills-contact-tab" class="nav-link" data-bs-toggle="pill" data-bs-target="#pills-contact" type="button" role="tab" aria-controls="pills-contact" aria-selected="false" tabindex="-1">Contact</button>
1761
+ </li>
1762
+ <li class="nav-item mr-1" role="presentation">
1763
+ <button id="pills-disabled-tab" class="nav-link" data-bs-toggle="pill" data-bs-target="#pills-disabled" type="button" role="tab" aria-controls="pills-disabled" aria-selected="false" disabled="" tabindex="-1">Disabled</button>
1764
+ </li>
1765
+ </ul>
1766
+
1767
+ <div id="pills-tabContent" class="tab-content">
1768
+ <div id="pills-home" class="tab-pane fade active show" role="tabpanel" aria-labelledby="pills-home-tab" tabindex="0">
1769
+ <p>This is some placeholder content the <strong>Home tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1784
1770
  </div>
1785
- <div class="col-md-6 p-0">
1786
- <h5 class="notoc">Stacked Pills (vertical)</h5>
1787
- <ul class="nav nav-pills flex-column mb-4">
1788
- <li class="nav-item mb-2">
1789
- <a href="javascript:void(0)" class="nav-link active">Active</a>
1790
- </li>
1791
- <li class="nav-item dropdown mb-1">
1792
- <a href="javascript:void(0)" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
1793
- <div class="dropdown-menu">
1794
- <a href="javascript:void(0)" class="dropdown-item">Action</a>
1795
- <a href="javascript:void(0)" class="dropdown-item">Another action</a>
1796
- <a href="javascript:void(0)" class="dropdown-item">Something else here</a>
1797
- <div class="dropdown-divider"></div>
1798
- <a href="javascript:void(0)" class="dropdown-item">Separated link</a>
1799
- </div>
1800
- </li>
1801
- <li class="nav-item mb-2">
1802
- <a href="javascript:void(0)" class="nav-link">Link</a>
1803
- </li>
1804
- <li class="nav-item mb-2">
1805
- <a href="javascript:void(0)" class="nav-link disabled">Disabled</a>
1806
- </li>
1807
- </ul>
1771
+ <div id="pills-profile" class="tab-pane fade" role="tabpanel" aria-labelledby="pills-profile-tab" tabindex="0">
1772
+ <p>This is some placeholder content the <strong>Profile tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1773
+ </div>
1774
+ <div id="pills-contact" class="tab-pane fade" role="tabpanel" aria-labelledby="pills-contact-tab" tabindex="0">
1775
+ <p>This is some placeholder content the <strong>Contact tab's</strong> associated content. Clicking another tab will toggle the visibility of this one for the next. The tab JavaScript swaps classes to control the content visibility and styling. You can use it with tabs, pills, and any other <code>.nav</code>-powered navigation.</p>
1776
+ </div>
1777
+ <div id="pills-disabled" class="tab-pane fade" role="tabpanel" aria-labelledby="pills-disabled-tab" tabindex="0">
1778
+ <p>This is some placeholder content the <strong>Disabled tab's</strong> associated content.</p>
1808
1779
  </div>
1809
1780
  </div>
1781
+
1810
1782
  </div>
1811
1783
  ++++
1812
1784
  endif::[]
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.2.0",
4
+ "version": "2023.2.1",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.2.0",
4
+ "version": "2023.2.1",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
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: 2023.2.0
4
+ version: 2023.2.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: 2023-05-01 00:00:00.000000000 Z
11
+ date: 2023-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll