jekyll-theme-centos 2.52.0.beta.52 → 2.52.0.beta.53
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/_data/base/bits_schema.yml +5 -4
- data/_data/base/content_schema.yml +1 -1
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/heading_anchor.yml +4 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/link_schema.yml +101 -67
- data/_data/base/locales_schema.yml +1 -1
- data/_data/base/project_schema.yml +8 -4
- data/_data/base/title_schema.yml +1 -1
- data/_data/base/toc_schema.yml +16 -2
- data/_includes/base/announcement.html.liquid +19 -7
- data/_includes/base/artwork.html.liquid +18 -6
- data/_includes/base/backtotop.html.liquid +20 -6
- data/_includes/base/bits.html.liquid +31 -18
- data/_includes/base/breadcrumb.html.liquid +7 -1
- data/_includes/base/breakingnews.html.liquid +19 -7
- data/_includes/base/card.html.liquid +43 -29
- data/_includes/base/configuration-variables-nested.html.liquid +1 -1
- data/_includes/base/configuration-variables.html.liquid +3 -3
- data/_includes/base/copyright.html.liquid +18 -6
- data/_includes/base/copyvalue.html.liquid +19 -5
- data/_includes/base/datatable.html.liquid +20 -6
- data/_includes/base/event.html.liquid +33 -21
- data/_includes/base/fontawesome.html.liquid +21 -7
- data/_includes/base/footer.html.liquid +36 -29
- data/_includes/base/head.html.liquid +60 -68
- data/_includes/base/heading_anchor.html.liquid +62 -0
- data/_includes/base/highlight.html.liquid +19 -5
- data/_includes/base/link.html.liquid +47 -53
- data/_includes/base/locales.html.liquid +41 -30
- data/_includes/base/navbar.html.liquid +22 -12
- data/_includes/base/navindex.html.liquid +14 -2
- data/_includes/base/ogp.html.liquid +89 -75
- data/_includes/base/project.html.liquid +34 -22
- data/_includes/base/script.html.liquid +7 -19
- data/_includes/base/shortcut.html.liquid +32 -24
- data/_includes/base/social.html.liquid +33 -23
- data/_includes/base/sponsors-cards.html.liquid +17 -6
- data/_includes/base/sponsors-carousel.html.liquid +21 -8
- data/_includes/base/title.html.liquid +21 -10
- data/_includes/base/toc.html.liquid +2 -2
- data/_layouts/base/default.html +8 -8
- data/_sass/base/_customization.scss +47 -0
- data/assets/img/base/page-layout-default.png +0 -0
- data/assets/img/base/page-layout-default.svg +878 -1241
- data/assets/img/base/page-with-backtotop.png +0 -0
- data/assets/img/base/page-with-backtotop.svg +800 -573
- data/assets/img/base/page-with-copyright.png +0 -0
- data/assets/img/base/page-with-copyright.svg +818 -645
- data/assets/img/base/page-with-footer.png +0 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-link.png +0 -0
- data/assets/img/base/page-with-link.svg +142 -139
- data/assets/img/base/page-with-locales.png +0 -0
- data/assets/img/base/page-with-locales.svg +795 -577
- data/assets/img/base/page-with-shortcut.png +0 -0
- data/assets/img/base/page-with-shortcut.svg +796 -569
- data/assets/img/base/page-with-social.png +0 -0
- data/assets/img/base/page-with-social.svg +811 -673
- data/assets/img/base/page-with-sponsors.png +0 -0
- data/assets/img/base/page-with-sponsors.svg +795 -568
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/init-tooltips.js +5 -4
- metadata +10 -3
- data/_data/base/toc_generator_schema.yml +0 -102
- /data/_includes/base/{toc_generator.html.liquid → toc-generator.html.liquid} +0 -0
|
@@ -29,8 +29,20 @@ Data Object Properties:
|
|
|
29
29
|
================================================================================
|
|
30
30
|
{% endcomment %}
|
|
31
31
|
|
|
32
|
-
{
|
|
33
|
-
|
|
32
|
+
{%- assign with_navindex = include.with_navindex
|
|
33
|
+
| default: page.with_navindex
|
|
34
|
+
%}
|
|
35
|
+
|
|
36
|
+
{%- assign with_navindex_data = include.data
|
|
37
|
+
| default: page.with_navindex_data
|
|
38
|
+
| default: site.data.navindex
|
|
39
|
+
| default: site.data.base.navindex
|
|
40
|
+
%}
|
|
41
|
+
|
|
42
|
+
{%- assign with_navindex_schema = site.data.base.navindex_schema.properties.with_navindex_data.properties %}
|
|
43
|
+
|
|
44
|
+
{% assign data = include.data | default: with_navindex_schema.data.default %}
|
|
45
|
+
{% assign format = include.format | default: with_navindex_schema.format.default %}
|
|
34
46
|
|
|
35
47
|
{%- comment %} Filter data by locale to show only matching language pages {%- endcomment %}
|
|
36
48
|
{%- assign current_locale = page.locale | default: 'en' %}
|
|
@@ -18,101 +18,115 @@ Required Inputs:
|
|
|
18
18
|
- site.baseurl: Base URL path prefix
|
|
19
19
|
|
|
20
20
|
Optional Inputs:
|
|
21
|
-
-
|
|
21
|
+
- with_ogp_data.og.*, with_ogp_data.twitter.*: OG/Twitter property overrides
|
|
22
22
|
- page.excerpt, page.title_lead: Fallback for description
|
|
23
23
|
- site.description: Site-level description fallback
|
|
24
24
|
|
|
25
25
|
Data Source Hierarchy:
|
|
26
|
-
-
|
|
26
|
+
- with_ogp_data values always take precedence
|
|
27
27
|
- Default image: /assets/img/centos-social-share.png
|
|
28
28
|
- Default image alt: "The CentOS Project"
|
|
29
29
|
================================================================================
|
|
30
30
|
{% endcomment %}
|
|
31
31
|
|
|
32
|
-
{%- assign
|
|
32
|
+
{%- assign with_ogp = include.with_ogp
|
|
33
|
+
| default: page.with_ogp
|
|
34
|
+
%}
|
|
33
35
|
|
|
34
|
-
{%-
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
{%- assign with_ogp_data = include.data
|
|
37
|
+
| default: page.with_ogp_data
|
|
38
|
+
| default: site.data.ogp
|
|
39
|
+
| default: site.data.base.ogp
|
|
40
|
+
%}
|
|
37
41
|
|
|
38
|
-
{%-
|
|
39
|
-
{%- assign properties = "og,twitter" | split: "," %}
|
|
40
|
-
{%- for property in properties %}
|
|
42
|
+
{%- assign with_ogp_schema = site.data.base.ogp_schema.properties.with_ogp_data.properties %}
|
|
41
43
|
|
|
42
|
-
|
|
43
|
-
{%- if page.ogp[property].title == nil %}
|
|
44
|
-
<meta property="{{ property }}:title" content="{{ page.title }}" />
|
|
45
|
-
{%- else %}
|
|
46
|
-
{%- endif %}
|
|
44
|
+
{%- if with_ogp %}
|
|
47
45
|
|
|
48
|
-
{%- comment %}
|
|
49
|
-
{%-
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
{%- comment %} === Presentation === {% endcomment %}
|
|
47
|
+
{%- comment %} --- Defaults --- {% endcomment %}
|
|
48
|
+
{%- assign ogp_og_type = with_ogp_data.og.type | default: with_ogp_schema.og.properties.type.default %}
|
|
49
|
+
|
|
50
|
+
{%- comment %} --- Common attributes for both `og` and `twitter` properties --- {% endcomment %}
|
|
51
|
+
{%- assign properties = "og,twitter" | split: "," %}
|
|
52
|
+
{%- for property in properties %}
|
|
52
53
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
<meta property="{{ property }}:description" content="{{ site.excrept }}" />
|
|
57
|
-
{%- elsif page.title_lead %}
|
|
58
|
-
<meta property="{{ property }}:description" content="{{ page.title_lead }}" />
|
|
54
|
+
{%- comment %} --- Title --- {% endcomment %}
|
|
55
|
+
{%- if with_ogp_data[property].title %}
|
|
56
|
+
<meta property="{{ property }}:title" content="{{ page.title }}" />
|
|
59
57
|
{%- else %}
|
|
60
|
-
<meta property="{{ property }}:description" content="{{ site.description }}" />
|
|
61
58
|
{%- endif %}
|
|
62
|
-
{%- endif %}
|
|
63
59
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
<meta property="{{ property }}:
|
|
67
|
-
{%- if property == "og" %}
|
|
68
|
-
<meta property="{{ property }}:image:secure_url" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
|
|
69
|
-
<meta property="{{ property }}:image:type" content="image/png" />
|
|
70
|
-
<meta property="{{ property }}:image:width" content="1200" />
|
|
71
|
-
<meta property="{{ property }}:image:height" content="630" />
|
|
60
|
+
{%- comment %} --- URL --- {% endcomment %}
|
|
61
|
+
{%- if with_ogp_data[property].url %}
|
|
62
|
+
<meta property="{{ property }}:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
|
|
72
63
|
{%- endif %}
|
|
73
|
-
{%- endif %}
|
|
74
64
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
{%- if property[0] == "og" %}
|
|
82
|
-
{%- for attribute in property[1] %}
|
|
83
|
-
{%- if attribute[0] == "image" or attribute[0] == "audio" or attribute[0] == "video" %}
|
|
84
|
-
{%- for item in attribute[1] %}
|
|
85
|
-
<meta property="{{ property[0] }}:{{ attribute[0] }}:{{ item[0] }}" content="{{ item[1] }}" />
|
|
86
|
-
{%- endfor %}
|
|
65
|
+
{%- comment %} --- Description --- {% endcomment %}
|
|
66
|
+
{%- if with_ogp_data[property].description %}
|
|
67
|
+
{%- if page.excrept %}
|
|
68
|
+
<meta property="{{ property }}:description" content="{{ site.excrept }}" />
|
|
69
|
+
{%- elsif page.title_lead %}
|
|
70
|
+
<meta property="{{ property }}:description" content="{{ page.title_lead }}" />
|
|
87
71
|
{%- else %}
|
|
88
|
-
<meta property="{{ property
|
|
72
|
+
<meta property="{{ property }}:description" content="{{ site.description }}" />
|
|
89
73
|
{%- endif %}
|
|
90
|
-
{%-
|
|
91
|
-
|
|
92
|
-
{%-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
{
|
|
97
|
-
|
|
98
|
-
<meta property="{{ property
|
|
74
|
+
{%- endif %}
|
|
75
|
+
|
|
76
|
+
{%- comment %} --- Image --- {% endcomment %}
|
|
77
|
+
{%- if with_ogp_data[property].image %}
|
|
78
|
+
<meta property="{{ property }}:image" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
|
|
79
|
+
{%- if property == "og" %}
|
|
80
|
+
<meta property="{{ property }}:image:secure_url" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
|
|
81
|
+
<meta property="{{ property }}:image:type" content="image/png" />
|
|
82
|
+
<meta property="{{ property }}:image:width" content="1200" />
|
|
83
|
+
<meta property="{{ property }}:image:height" content="630" />
|
|
99
84
|
{%- endif %}
|
|
100
|
-
{%-
|
|
85
|
+
{%- endif %}
|
|
86
|
+
|
|
87
|
+
{%- comment %} --- Image alternative text --- {% endcomment %}
|
|
88
|
+
{%- if with_ogp_data[property].image.alt == nil %}
|
|
89
|
+
<meta property="{{ property }}:image:alt" content="The CentOS Project" />
|
|
90
|
+
{%- endif %}
|
|
91
|
+
|
|
92
|
+
{%- comment %} --- Override common attributes in both `og` and `twitter` properties --- {% endcomment %}
|
|
93
|
+
{%- if property[0] == "og" %}
|
|
94
|
+
{%- for attribute in property[1] %}
|
|
95
|
+
{%- if attribute[0] == "image" or attribute[0] == "audio" or attribute[0] == "video" %}
|
|
96
|
+
{%- for item in attribute[1] %}
|
|
97
|
+
<meta property="{{ property[0] }}:{{ attribute[0] }}:{{ item[0] }}" content="{{ item[1] }}" />
|
|
98
|
+
{%- endfor %}
|
|
99
|
+
{%- else %}
|
|
100
|
+
<meta property="{{ property[0] }}:{{ attribute[0] }}" content="{{ attribute[1] }}" />
|
|
101
|
+
{%- endif %}
|
|
102
|
+
{%- endfor %}
|
|
103
|
+
{%- elsif property[0] == "twitter" %}
|
|
104
|
+
{%- for attribute in property[1] %}
|
|
105
|
+
{%- if attribute[0] == "image" or attribute[0] == "site" or attribute[0] == "creator" %}
|
|
106
|
+
{%- for item in attribute[1] %}
|
|
107
|
+
<meta property="{{ property[0] }}:{{ attribute[0] }}:{{ item[0] }}" content="{{ item[1] }}" />
|
|
108
|
+
{%- endfor %}
|
|
109
|
+
{%- else %}
|
|
110
|
+
<meta property="{{ property[0] }}:{{ attribute[0] }}" content="{{ attribute[1] }}" />
|
|
111
|
+
{%- endif %}
|
|
112
|
+
{%- endfor %}
|
|
113
|
+
{%- endif %}
|
|
114
|
+
{%- endfor %}
|
|
115
|
+
|
|
116
|
+
{%- comment %} --- Specific attributes for `og` property --- {% endcomment %}
|
|
117
|
+
{%- if ogp_og_type == nil %}
|
|
118
|
+
<meta property="og:type" content="website" />
|
|
101
119
|
{%- endif %}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
{%-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
{%-
|
|
108
|
-
|
|
109
|
-
{%-
|
|
110
|
-
{%- if
|
|
111
|
-
<meta property="twitter:
|
|
112
|
-
{%- endif %}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
{%- endif %}
|
|
116
|
-
{%- if page.ogp.twitter.creator.id == nil %}
|
|
117
|
-
<meta property="twitter:creator:id" content="@CentOS" />
|
|
118
|
-
{%- endif %}
|
|
120
|
+
|
|
121
|
+
{%- comment %} --- Specific attributes for `twitter` property --- {% endcomment %}
|
|
122
|
+
{%- if with_ogp_data.twitter.card == nil %}
|
|
123
|
+
<meta property="twitter:card" content="summary_large_image" />
|
|
124
|
+
{%- endif %}
|
|
125
|
+
{%- if with_ogp_data.twitter.site.id == nil %}
|
|
126
|
+
<meta property="twitter:site:id" content="@CentOS" />
|
|
127
|
+
{%- endif %}
|
|
128
|
+
{%- if with_ogp_data.twitter.creator.id == nil %}
|
|
129
|
+
<meta property="twitter:creator:id" content="@CentOS" />
|
|
130
|
+
{%- endif %}
|
|
131
|
+
|
|
132
|
+
{% endif %}
|
|
@@ -27,29 +27,40 @@ Data Source Hierarchy (priority):
|
|
|
27
27
|
================================================================================
|
|
28
28
|
{% endcomment %}
|
|
29
29
|
|
|
30
|
-
{%-
|
|
31
|
-
|
|
30
|
+
{%- assign with_project = include.with_project
|
|
31
|
+
| default: page.with_project
|
|
32
|
+
%}
|
|
32
33
|
|
|
33
|
-
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
{
|
|
40
|
-
|
|
41
|
-
{
|
|
42
|
-
|
|
43
|
-
{% assign
|
|
44
|
-
{% assign
|
|
45
|
-
{% assign
|
|
46
|
-
{% assign
|
|
47
|
-
{% assign
|
|
48
|
-
{% assign
|
|
49
|
-
{% assign
|
|
50
|
-
{% assign
|
|
51
|
-
{% assign
|
|
52
|
-
{% assign
|
|
34
|
+
{%- assign with_project_data = include.data
|
|
35
|
+
| default: page.with_project_data
|
|
36
|
+
| default: site.data.project
|
|
37
|
+
| default: site.data.base.project
|
|
38
|
+
%}
|
|
39
|
+
|
|
40
|
+
{%- assign with_project_schema = site.data.base.project_schema.properties.with_project_data.properties %}
|
|
41
|
+
|
|
42
|
+
{%- if with_project -%}
|
|
43
|
+
|
|
44
|
+
{% assign project_class = with_project_data.class | default: with_project_schema.class.default %}
|
|
45
|
+
{% assign project_screenshot = with_project_data.screenshot | default: with_project_schema.screenshot.default %}
|
|
46
|
+
{% assign project_screenshot_class = with_project_data.screenshot_class | default: with_project_schema.screenshot_class.default %}
|
|
47
|
+
{% assign project_screenshot_alt = with_project_data.screenshot_alt | default: with_project_schema.screenshot_alt.default %}
|
|
48
|
+
{% assign project_image = with_project_data.image | default: with_project_schema.image.default %}
|
|
49
|
+
{% assign project_image_alt = with_project_data.image_alt | default: with_project_schema.image_alt.default %}
|
|
50
|
+
{% assign project_image_class = with_project_data.image_class | default: with_project_schema.image_class.default %}
|
|
51
|
+
{% assign project_image_style = with_project_data.image_style | default: with_project_schema.image_style.default %}
|
|
52
|
+
{% assign project_icon = with_project_data.icon | default: with_project_schema.icon.default %}
|
|
53
|
+
{% assign project_icon_class = with_project_data.icon_class | default: with_project_schema.icon_class.default %}
|
|
54
|
+
{% assign project_name = with_project_data.name | default: with_project_schema.name.default %}
|
|
55
|
+
{% assign project_name_class = with_project_data.name_class | default: with_project_schema.name_class.default %}
|
|
56
|
+
{% assign project_description = with_project_data.description | default: with_project_schema.description.default %}
|
|
57
|
+
{% assign project_description_class = with_project_data.description_class | default: with_project_schema.description_class.default %}
|
|
58
|
+
{% assign project_actions = with_project_data.actions | default: with_project_schema.actions.default %}
|
|
59
|
+
{% assign project_actions_class = with_project_data.actions_class | default: with_project_schema.actions_class.default %}
|
|
60
|
+
{% assign project_actions_btn_class = with_project_data.actions_btn_class | default: with_project_schema.actions_btn_class.default %}
|
|
61
|
+
{% assign project_resources = with_project_data.resources | default: with_project_schema.resources.default %}
|
|
62
|
+
{% assign project_resources_class = with_project_data.resources_class | default: with_project_schema.resources_class.default %}
|
|
63
|
+
{% assign project_resources_btn_class = with_project_data.resources_btn_class | default: with_project_schema.resources_btn_class.default %}
|
|
53
64
|
|
|
54
65
|
<div class="d-flex{% if project_class != "" %} {{ project_class }}{% endif %}">
|
|
55
66
|
<div class="container pt-5">
|
|
@@ -89,4 +100,5 @@ Data Source Hierarchy (priority):
|
|
|
89
100
|
{%- endif %}
|
|
90
101
|
</div>
|
|
91
102
|
</div>
|
|
103
|
+
|
|
92
104
|
{%- endif -%}
|
|
@@ -22,6 +22,7 @@ Conditional Inputs (from page front matter):
|
|
|
22
22
|
- page.with_datatable: Load DataTables (boolean)
|
|
23
23
|
- page.with_backtotop: Load Back-to-Top (boolean)
|
|
24
24
|
- page.with_copyvalue: Load Copy Value functionality (boolean)
|
|
25
|
+
- page.with_heading_anchor: Load Heading Anchor copy behavior (boolean)
|
|
25
26
|
|
|
26
27
|
Bootstrap Tooltip Initialization:
|
|
27
28
|
```javascript
|
|
@@ -38,22 +39,9 @@ Dependencies:
|
|
|
38
39
|
<script src="{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
|
|
39
40
|
<script src="{{ site.baseurl }}/assets/js/base/init-tooltips.min.js"></script>
|
|
40
41
|
|
|
41
|
-
{
|
|
42
|
-
{
|
|
43
|
-
{
|
|
44
|
-
|
|
45
|
-
{
|
|
46
|
-
{
|
|
47
|
-
{% endif -%}
|
|
48
|
-
|
|
49
|
-
{% if page.with_datatable %}
|
|
50
|
-
{% include base/datatable.html.liquid type="script" %}
|
|
51
|
-
{% endif %}
|
|
52
|
-
|
|
53
|
-
{% if page.with_backtotop -%}
|
|
54
|
-
{% include base/backtotop.html.liquid %}
|
|
55
|
-
{% endif %}
|
|
56
|
-
|
|
57
|
-
{% if page.with_copyvalue -%}
|
|
58
|
-
{% include base/copyvalue.html.liquid %}
|
|
59
|
-
{% endif %}
|
|
42
|
+
{%- include base/fontawesome.html.liquid type="script" %}
|
|
43
|
+
{%- include base/highlight.html.liquid type="script" %}
|
|
44
|
+
{%- include base/datatable.html.liquid type="script" %}
|
|
45
|
+
{%- include base/backtotop.html.liquid %}
|
|
46
|
+
{%- include base/copyvalue.html.liquid %}
|
|
47
|
+
{%- include base/heading_anchor.html.liquid %}
|
|
@@ -33,36 +33,44 @@ Conditional Logic:
|
|
|
33
33
|
================================================================================
|
|
34
34
|
{% endcomment %}
|
|
35
35
|
|
|
36
|
-
{%-
|
|
37
|
-
|
|
36
|
+
{%- assign with_shortcut = include.with_shortcut
|
|
37
|
+
| default: page.with_shortcut
|
|
38
|
+
%}
|
|
39
|
+
|
|
40
|
+
{%- assign with_shortcut_data = include.data
|
|
38
41
|
| default: page.with_shortcut_data
|
|
39
42
|
| default: page.with_navbar_data
|
|
40
43
|
| default: site.data.shortcut
|
|
41
44
|
| default: site.data.navbar
|
|
42
45
|
| default: site.data.base.shortcut
|
|
43
|
-
| default: site.data.base.navbar
|
|
44
|
-
|
|
46
|
+
| default: site.data.base.navbar
|
|
47
|
+
%}
|
|
48
|
+
|
|
49
|
+
{%- assign shortcut_navitems = with_shortcut_data.navitems | where: "visible_on", "footer" %}
|
|
45
50
|
|
|
46
|
-
{%-
|
|
47
|
-
{% if shortcut_navitems.size > 0 %}
|
|
48
|
-
<div class="d-flex flex-wrap justify-content-evenly mb-4">
|
|
51
|
+
{%- if with_shortcut -%}
|
|
49
52
|
|
|
50
|
-
{%
|
|
51
|
-
|
|
52
|
-
<div class="
|
|
53
|
-
|
|
54
|
-
{% for
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
53
|
+
{%- comment %} === Presentation === {% endcomment %}
|
|
54
|
+
{% if shortcut_navitems.size > 0 %}
|
|
55
|
+
<div class="d-flex flex-wrap justify-content-evenly mb-4">
|
|
56
|
+
|
|
57
|
+
{% for section in shortcut_navitems -%}
|
|
58
|
+
<div class="pe-4">
|
|
59
|
+
<p class="h6">{% if section.icon %}<i class="{{ section.icon }} me-1"></i>{% endif %}{{ section.name }}</p>
|
|
60
|
+
<ul class="px-0 mb-4">
|
|
61
|
+
{% for item in section.menu -%}
|
|
62
|
+
<li class="list-unstyled my-1">
|
|
63
|
+
{% include base/link.html.liquid
|
|
64
|
+
name = item.name
|
|
65
|
+
link = item.link
|
|
66
|
+
color = "primary"
|
|
67
|
+
%}
|
|
68
|
+
</li>
|
|
69
|
+
{% endfor %}
|
|
70
|
+
</ul>
|
|
71
|
+
</div>
|
|
62
72
|
{% endfor %}
|
|
63
|
-
</
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
</div>
|
|
67
|
-
{% endif %}
|
|
73
|
+
</div>
|
|
74
|
+
{% endif %}
|
|
75
|
+
|
|
68
76
|
{%- endif -%}
|
|
@@ -37,30 +37,40 @@ Conditional Logic:
|
|
|
37
37
|
================================================================================
|
|
38
38
|
{% endcomment %}
|
|
39
39
|
|
|
40
|
-
{%- assign
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
{%- assign social_preamble_class = social.preamble_class | default: site.data.base.social_schema.properties.with_social_data.properties.preamble_class.default %}
|
|
44
|
-
{%- assign social_media = social.media | default: site.data.base.social_schema.properties.with_social_data.properties.media.default %}
|
|
40
|
+
{%- assign with_social = include.with_social
|
|
41
|
+
| default: page.with_social
|
|
42
|
+
%}
|
|
45
43
|
|
|
46
|
-
{
|
|
47
|
-
|
|
44
|
+
{%- assign with_social_data = include.data
|
|
45
|
+
| default: page.with_social_data
|
|
46
|
+
| default: site.data.social
|
|
47
|
+
| default: site.data.base.social
|
|
48
|
+
%}
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
{%- assign with_social_schema = site.data.base.social_schema.properties.with_social_data.properties %}
|
|
51
|
+
|
|
52
|
+
{%- assign social_class = with_social_data.class | default: with_social_schema.class.default %}
|
|
53
|
+
{%- assign social_preamble = with_social_data.preamble | default: with_social_schema.preamble.default %}
|
|
54
|
+
{%- assign social_preamble_class = with_social_data.preamble_class | default: with_social_schema.preamble_class.default %}
|
|
55
|
+
{%- assign social_media = with_social_data.media | default: with_social_schema.media.default %}
|
|
56
|
+
|
|
57
|
+
{% if with_social %}
|
|
58
|
+
|
|
59
|
+
{%- comment %} === Presentation (Begin) === {% endcomment %}
|
|
60
|
+
{%- if social_preamble %}
|
|
61
|
+
<p class="{{ social_preamble_class }}">{{ social_preamble }}</p>
|
|
62
|
+
{%- endif %}
|
|
63
|
+
|
|
64
|
+
{%- for item in social_media -%}
|
|
65
|
+
{%- include base/link.html.liquid
|
|
66
|
+
class = "btn btn-outline-primary m-1"
|
|
67
|
+
link = item.link
|
|
68
|
+
role = "button"
|
|
69
|
+
icon = item.icon
|
|
70
|
+
aria_label = item.name
|
|
71
|
+
data_bs_title = item.name
|
|
72
|
+
%}
|
|
73
|
+
{%- endfor %}
|
|
74
|
+
{%- comment %} === Presentation (End) === {% endcomment %}
|
|
53
75
|
|
|
54
|
-
{%- for item in social_media -%}
|
|
55
|
-
{%- include base/link.html.liquid
|
|
56
|
-
class = "btn btn-outline-primary m-1"
|
|
57
|
-
link = item.link
|
|
58
|
-
role = "button"
|
|
59
|
-
icon = item.icon
|
|
60
|
-
aria_label = item.name
|
|
61
|
-
data_bs_title = item.name
|
|
62
|
-
%}
|
|
63
|
-
{%- endfor %}
|
|
64
|
-
{%- comment %} === Presentation (End) === {% endcomment %}
|
|
65
|
-
</div>
|
|
66
76
|
{% endif %}
|
|
@@ -33,13 +33,24 @@ Conditional Logic:
|
|
|
33
33
|
================================================================================
|
|
34
34
|
{% endcomment %}
|
|
35
35
|
|
|
36
|
-
{%- assign
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
{%- assign with_sponsors = include.with_sponsors
|
|
37
|
+
| default: page.with_sponsors
|
|
38
|
+
%}
|
|
39
39
|
|
|
40
|
-
{%-
|
|
41
|
-
|
|
40
|
+
{%- assign with_sponsors_data = include.data
|
|
41
|
+
| default: page.with_sponsors_data
|
|
42
|
+
| default: site.data.sponsors
|
|
43
|
+
| default: site.data.base.sponsors
|
|
44
|
+
%}
|
|
45
|
+
|
|
46
|
+
{%- assign with_sponsors_schema = site.data.base.sponsors_schema.properties.with_sponsors_data.properties %}
|
|
47
|
+
|
|
48
|
+
{%- assign sponsors_members = with_sponsors_data.members | default: with_sponsors_schema.members.default -%}
|
|
49
|
+
{%- assign sponsors_image_base = with_sponsors_data.image_base_path | default: with_sponsors_schema.image_base_path.default -%}
|
|
50
|
+
|
|
51
|
+
{%- if with_sponsors -%}
|
|
42
52
|
|
|
53
|
+
<div class="d-flex flex-wrap justify-content-between py-4 my-4 border-top border-bottom border-top-1 border-bottom-1">
|
|
43
54
|
{%- comment %} === Presentation (Begin) === {% endcomment %}
|
|
44
55
|
{%- for member in sponsors_members -%}
|
|
45
56
|
{%- if member.is_active != false %}
|
|
@@ -53,6 +64,6 @@ Conditional Logic:
|
|
|
53
64
|
{%- endif -%}
|
|
54
65
|
{%- endfor %}
|
|
55
66
|
{%- comment %} === Presentation (End) === {% endcomment %}
|
|
56
|
-
|
|
57
67
|
</div>
|
|
68
|
+
|
|
58
69
|
{%- endif -%}
|
|
@@ -37,21 +37,33 @@ Conditional Logic:
|
|
|
37
37
|
================================================================================
|
|
38
38
|
{% endcomment %}
|
|
39
39
|
|
|
40
|
-
{%- assign
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
{%- assign
|
|
45
|
-
|
|
40
|
+
{%- assign with_sponsors = include.with_sponsors
|
|
41
|
+
| default: page.with_sponsors
|
|
42
|
+
%}
|
|
43
|
+
|
|
44
|
+
{%- assign with_sponsors_data = include.data
|
|
45
|
+
| default: page.with_sponsors_data
|
|
46
|
+
| default: site.data.sponsors
|
|
47
|
+
| default: site.data.base.sponsors
|
|
48
|
+
%}
|
|
49
|
+
|
|
50
|
+
{%- assign with_sponsors_schema = site.data.base.sponsors_schema.properties.with_sponsors_data.properties %}
|
|
51
|
+
|
|
52
|
+
{%- assign sponsors_title = with_sponsors_data.title | default: with_sponsors_schema.title.default -%}
|
|
53
|
+
{%- assign sponsors_icon = with_sponsors_data.icon | default: with_sponsors_schema.icon.default -%}
|
|
54
|
+
{%- assign sponsors_message = with_sponsors_data.message | default: with_sponsors_schema.message.default -%}
|
|
55
|
+
{%- assign sponsors_members = with_sponsors_data.members | default: with_sponsors_schema.members.default -%}
|
|
56
|
+
{%- assign sponsors_image_base = with_sponsors_data.image_base_path | default: with_sponsors_schema.image_base_path.default -%}
|
|
46
57
|
|
|
47
58
|
{%- assign carousel_id = include.id | default: "sponsorsCarousel" -%}
|
|
48
59
|
|
|
49
|
-
{%- if
|
|
60
|
+
{%- if with_sponsors -%}
|
|
61
|
+
|
|
50
62
|
<div id="{{ carousel_id }}" class="d-flex flex-wrap mb-5">
|
|
51
63
|
|
|
52
64
|
{%- comment %} === Presentation (Begin) === {% endcomment %}
|
|
53
65
|
{%- if include.with_title != false %}
|
|
54
|
-
<
|
|
66
|
+
<p class="h6"><i class="{{ sponsors_icon }}"></i> {{ sponsors_title }}</p>
|
|
55
67
|
{{ sponsors_message | markdownify | decorate_links }}
|
|
56
68
|
{%- endif %}
|
|
57
69
|
|
|
@@ -75,4 +87,5 @@ Conditional Logic:
|
|
|
75
87
|
{%- comment %} === Presentation (End) === {% endcomment %}
|
|
76
88
|
|
|
77
89
|
</div>
|
|
90
|
+
|
|
78
91
|
{%- endif -%}
|
|
@@ -34,21 +34,32 @@ Conditional Logic:
|
|
|
34
34
|
================================================================================
|
|
35
35
|
{% endcomment %}
|
|
36
36
|
|
|
37
|
-
{%-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
{%- assign with_title = include.with_title
|
|
38
|
+
| default: page.with_title
|
|
39
|
+
%}
|
|
40
|
+
|
|
41
|
+
{%- assign with_title_data = include.data
|
|
42
|
+
| default: page.with_title_data
|
|
43
|
+
| default: site.data.title
|
|
44
|
+
| default: site.data.base.title
|
|
45
|
+
%}
|
|
46
|
+
|
|
47
|
+
{%- assign with_title_schema = site.data.base.title_schema.properties.with_title_data.properties %}
|
|
40
48
|
|
|
41
49
|
{%- comment %} === Presentation === {% endcomment %}
|
|
42
|
-
{%- assign class =
|
|
43
|
-
{%- assign title =
|
|
44
|
-
{%- assign title_class =
|
|
45
|
-
{%- assign title_lead =
|
|
46
|
-
{%- assign title_lead_class =
|
|
50
|
+
{%- assign class = with_title_data.class | default: with_title_schema.class.default %}
|
|
51
|
+
{%- assign title = with_title_data.title | default: page.title %}
|
|
52
|
+
{%- assign title_class = with_title_data.title_class | default: with_title_schema.title_class.default %}
|
|
53
|
+
{%- assign title_lead = with_title_data.title_lead | default: page.title_lead %}
|
|
54
|
+
{%- assign title_lead_class = with_title_data.title_lead_class | default: with_title_schema.title_lead_class.default %}
|
|
55
|
+
|
|
56
|
+
{%- if page.with_title -%}
|
|
47
57
|
|
|
48
58
|
<div class="{{ class }}">
|
|
49
|
-
<
|
|
59
|
+
<p class="{{ title_class }}">{{ title }}</p>
|
|
50
60
|
{% if title_lead != "" %}
|
|
51
|
-
<
|
|
61
|
+
<p class="{{ title_lead_class }}">{{ title_lead }}</p>
|
|
52
62
|
{% endif %}
|
|
53
63
|
</div>
|
|
64
|
+
|
|
54
65
|
{%- endif -%}
|
|
@@ -65,13 +65,13 @@ Data Source Hierarchy (in priority order):
|
|
|
65
65
|
<div class="accordion-item">
|
|
66
66
|
<div class="accordion-header" id="flush-headingOne">
|
|
67
67
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
|
|
68
|
-
<i class="fa-solid fa-list"></i>
|
|
68
|
+
<i class="fa-solid fa-list" aria-hidden="true"></i>
|
|
69
69
|
<span class="mx-3 fw-bold">On this page</span>
|
|
70
70
|
</button>
|
|
71
71
|
</div>
|
|
72
72
|
<div id="flush-collapseOne" class="accordion-collapse collapse" data-bs-parent="#pageToc">
|
|
73
73
|
<div class="accordion-body small">
|
|
74
|
-
{%- include base/
|
|
74
|
+
{%- include base/toc-generator.html.liquid
|
|
75
75
|
id=id
|
|
76
76
|
html=content
|
|
77
77
|
class=class
|