appscms-tools-theme 3.0.0 → 3.0.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/_layouts/feature.html +4 -32
- data/_layouts/home.html +269 -246
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fefa89f74d27f04f584c8fceb5e063f0cf7c7a329c4ab432c91f0dbd5e4e39a
|
|
4
|
+
data.tar.gz: 712f14f3847b860c7658a23436dd679caf6b312d524048641ef0eb6f22aceef0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6a1a1351f09b1b292b1f251fd2ffd4fb0cac1214888e76e679936f8f8613c133b1f3d2f59e91acd6e3ea6e941c2e3c7dd6ac5f66b347095b1d4be7772810ae9
|
|
7
|
+
data.tar.gz: 4d642ad4e76fc760e3d4b6b4c4941e9df7c16ac891c005888a1210e2b2c5c9a9b48ca6655350c20f27711df22d78ffdea6bde20cfffff7a9159ac12a87b6dbd1
|
data/_layouts/feature.html
CHANGED
|
@@ -7,42 +7,14 @@
|
|
|
7
7
|
<body>
|
|
8
8
|
{% include header/index.html %} {%- if site.safeui -%}
|
|
9
9
|
<div
|
|
10
|
-
class="alert alert-{{featureData.variant | default: 'info'}}
|
|
10
|
+
class="alert alert-{{featureData.variant | default: 'info'}} fade show text-center"
|
|
11
11
|
role="alert"
|
|
12
12
|
id="safeui-alert"
|
|
13
13
|
>
|
|
14
14
|
<div class="container">
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
width="18px"
|
|
19
|
-
alt="secure"
|
|
20
|
-
{%-
|
|
21
|
-
if
|
|
22
|
-
site.crossorigin
|
|
23
|
-
-%}
|
|
24
|
-
crossorigin
|
|
25
|
-
{%-
|
|
26
|
-
endif
|
|
27
|
-
-%}
|
|
28
|
-
/>
|
|
29
|
-
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else
|
|
30
|
-
-%} We do not upload any files to server, hence your data is 100%
|
|
31
|
-
secure. {%- endif -%}
|
|
32
|
-
<img
|
|
33
|
-
src="/assets/noserverupload.svg"
|
|
34
|
-
height="23px"
|
|
35
|
-
width="20px"
|
|
36
|
-
alt="no server upload"
|
|
37
|
-
{%-
|
|
38
|
-
if
|
|
39
|
-
site.crossorigin
|
|
40
|
-
-%}
|
|
41
|
-
crossorigin
|
|
42
|
-
{%-
|
|
43
|
-
endif
|
|
44
|
-
-%}
|
|
45
|
-
/>
|
|
15
|
+
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else -%} We
|
|
16
|
+
do not upload any files to server, hence your data is 100% secure. {%-
|
|
17
|
+
endif -%}
|
|
46
18
|
<button
|
|
47
19
|
type="button"
|
|
48
20
|
class="close"
|
data/_layouts/home.html
CHANGED
|
@@ -1,250 +1,273 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
{% assign folder = page.folderName %}
|
|
4
|
-
{% assign homeData= site.data[folder][lang][file] %}
|
|
1
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
|
|
2
|
+
= page.folderName %} {% assign homeData= site.data[folder][lang][file] %}
|
|
5
3
|
<!DOCTYPE html>
|
|
6
4
|
<html lang="{{page.lang}}">
|
|
7
|
-
{% include head/index.html %}
|
|
5
|
+
{% include head/index.html %}
|
|
8
6
|
|
|
9
|
-
<body>
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
7
|
+
<body>
|
|
8
|
+
{% include header/index.html %} {%- if homeData.nofileupload -%}
|
|
9
|
+
<div
|
|
10
|
+
id="safeui-alert"
|
|
11
|
+
class="alert alert-{{homeData.variant | default: 'info'}}` fade show text-center"
|
|
12
|
+
role="alert"
|
|
13
|
+
>
|
|
14
|
+
<div class="container">
|
|
15
|
+
{%- if homeData.alertmsg -%} {{homeData.alertmsg}} {%- else -%} We do
|
|
16
|
+
not upload any files to server, hence your data is 100% secure. {%-
|
|
17
|
+
endif -%}
|
|
18
|
+
<button
|
|
19
|
+
type="button"
|
|
20
|
+
class="close"
|
|
21
|
+
data-dismiss="alert"
|
|
22
|
+
aria-label="Close"
|
|
23
|
+
>
|
|
24
|
+
<span aria-hidden="true">×</span>
|
|
25
|
+
</button>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
{%- endif -%} {%- if homeData.h1 or homeData.h2 -%}
|
|
29
|
+
<div class="flex-container mb-1">
|
|
30
|
+
<div class="flex-class py-5">
|
|
31
|
+
<div class="d-flex justify-content-center align-items-center">
|
|
32
|
+
<span class="fHhdVc">
|
|
33
|
+
<div class="div-cont feature-img mr-2">
|
|
34
|
+
{%- if homeData.img -%}
|
|
35
|
+
<img
|
|
36
|
+
style="width:{{homeData.imgwidth}};height:{{homeData.imgheight}};"
|
|
37
|
+
src="{{homeData.img}}"
|
|
38
|
+
alt="{{homeData.imgalt}}"
|
|
39
|
+
{%-
|
|
40
|
+
if
|
|
41
|
+
site.crossorigin
|
|
42
|
+
-%}
|
|
43
|
+
crossorigin
|
|
44
|
+
{%-
|
|
45
|
+
endif
|
|
46
|
+
-%}
|
|
47
|
+
/>
|
|
48
|
+
{%- endif -%}
|
|
49
|
+
</div>
|
|
50
|
+
</span>
|
|
51
|
+
<h1 class="home-top-h1">
|
|
52
|
+
{%- for word in homeData.h1 -%} {%- if forloop.first == true -%}
|
|
53
|
+
{{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%-
|
|
54
|
+
endfor -%}
|
|
55
|
+
</h1>
|
|
56
|
+
</div>
|
|
57
|
+
<h2 class="home-top-h2">
|
|
58
|
+
{%- for word in homeData.h2 -%} {%- if forloop.first == true -%}
|
|
59
|
+
{{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor
|
|
60
|
+
-%}
|
|
61
|
+
</h2>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
{%- endif -%} {%- if homeData.features -%} {%- if site.monumetricId and
|
|
65
|
+
page.url != '/' and page.lang == "en" -%}
|
|
66
|
+
<div class="container">
|
|
67
|
+
<div class="row">
|
|
68
|
+
<div class="col-md-9 mx-auto">
|
|
69
|
+
{%- endif -%}
|
|
70
|
+
<div class="flex-container">
|
|
71
|
+
<div class="flex-class">
|
|
72
|
+
<ul class="home-features">
|
|
73
|
+
{% for product in homeData.features %}
|
|
74
|
+
<li
|
|
75
|
+
style="background:{{product.color}}"
|
|
76
|
+
class="home-feature-box"
|
|
77
|
+
>
|
|
78
|
+
<div class="home-inner-box">
|
|
79
|
+
<div
|
|
80
|
+
class="div-cont feature-img"
|
|
81
|
+
height="36px"
|
|
82
|
+
width="36px"
|
|
83
|
+
>
|
|
84
|
+
<img
|
|
85
|
+
src="{{product.icon}}"
|
|
86
|
+
height="36px"
|
|
87
|
+
width="36px"
|
|
88
|
+
alt="star icon"
|
|
89
|
+
{%-
|
|
90
|
+
if
|
|
91
|
+
site.crossorigin
|
|
92
|
+
-%}
|
|
93
|
+
crossorigin
|
|
94
|
+
{%-
|
|
95
|
+
endif
|
|
96
|
+
-%}
|
|
97
|
+
/>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
<div class="home-feature-desc">{{product.description}}</div>
|
|
101
|
+
<a class="home-feature-name" href="{{product.url}}"
|
|
102
|
+
>{{product.name}}</a
|
|
103
|
+
>
|
|
104
|
+
</li>
|
|
105
|
+
{% endfor %}
|
|
106
|
+
</ul>
|
|
107
|
+
</div>
|
|
108
|
+
</div>
|
|
109
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
{%- endif -%} {%- endif -%}
|
|
114
|
+
<div class="home-content-box" id="theme-content-box">{{content}}</div>
|
|
115
|
+
{%- if homeData.TEXTUAL_CONTENT -%}
|
|
116
|
+
<div class="container mt-4 mb-4">
|
|
117
|
+
<div class="row px-0">
|
|
118
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
119
|
+
<div class="col-md-9 mx-auto">
|
|
120
|
+
<div class="row">
|
|
121
|
+
{%- endif -%} {% for data in homeData.TEXTUAL_CONTENT %}
|
|
122
|
+
<div
|
|
123
|
+
class="{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4 {%- endif -%}"
|
|
124
|
+
>
|
|
125
|
+
<div>
|
|
126
|
+
<img
|
|
127
|
+
class="feature-card-img"
|
|
128
|
+
height="48px"
|
|
129
|
+
width="48px"
|
|
130
|
+
loading="lazy"
|
|
131
|
+
src="{{data.logoUrl}}"
|
|
132
|
+
alt="{{data.header}}"
|
|
133
|
+
{%-
|
|
134
|
+
if
|
|
135
|
+
site.crossorigin
|
|
136
|
+
-%}
|
|
137
|
+
crossorigin
|
|
138
|
+
{%-
|
|
139
|
+
endif
|
|
140
|
+
-%}
|
|
141
|
+
/>
|
|
142
|
+
<div class="feature-card-title">
|
|
143
|
+
{{data.header | replace: "$variable", page.value}}
|
|
144
|
+
</div>
|
|
145
|
+
<div class="feature-card-desc">
|
|
146
|
+
{{data.content | replace: "$variable", page.value}}
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
{% endfor %} {%- if site.monumetricId and page.url != '/' and
|
|
151
|
+
page.lang == "en" -%}
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
154
|
+
{%- endif -%}
|
|
155
|
+
</div>
|
|
156
|
+
</div>
|
|
157
|
+
{%- endif -%} {%- if homeData.HOW_TO_CONTENT -%}
|
|
158
|
+
<section class="how-to-section">
|
|
159
|
+
<div class="container">
|
|
160
|
+
<div class="row">
|
|
161
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
|
|
162
|
+
<div class="col-md-9 mx-auto">
|
|
163
|
+
<div class="row">
|
|
164
|
+
{%- endif -%}
|
|
165
|
+
<div class="col-md-6 order-0">
|
|
166
|
+
{%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
|
|
167
|
+
<div class="how-to-img-wrapper">
|
|
168
|
+
<img
|
|
169
|
+
class="how-to-leftimg"
|
|
170
|
+
height="180px"
|
|
171
|
+
width="300px"
|
|
172
|
+
src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}"
|
|
173
|
+
loading="lazy"
|
|
174
|
+
alt="{{homeData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}"
|
|
175
|
+
{%-
|
|
176
|
+
if
|
|
177
|
+
site.crossorigin
|
|
178
|
+
-%}
|
|
179
|
+
crossorigin
|
|
180
|
+
{%-
|
|
181
|
+
endif
|
|
182
|
+
-%}
|
|
183
|
+
/>
|
|
184
|
+
</div>
|
|
185
|
+
{%- endif -%}
|
|
186
|
+
</div>
|
|
187
|
+
<div class="col-md-6 order-1">
|
|
188
|
+
<div class="how-to-right">
|
|
189
|
+
<h3 class="how-to-title text-left">
|
|
190
|
+
{{homeData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
191
|
+
page.value}}
|
|
192
|
+
</h3>
|
|
193
|
+
<ol class="how-to-list">
|
|
194
|
+
{% for data in homeData.HOW_TO_CONTENT.steps %}
|
|
117
195
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
</ul>
|
|
197
|
-
</div>
|
|
198
|
-
</div>
|
|
199
|
-
</div>
|
|
200
|
-
|
|
201
|
-
</div>
|
|
202
|
-
</section>
|
|
203
|
-
{%- endif -%}
|
|
204
|
-
{%- endif -%}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
{%- include share/socialshare.html -%}
|
|
208
|
-
{%- include Rating/rating.html -%}
|
|
209
|
-
{%- if homeData.USPS -%}
|
|
210
|
-
{%- include /Usp/usp.html -%}
|
|
211
|
-
|
|
212
|
-
{%- endif -%}
|
|
213
|
-
{%- if homeData.display_formats -%}
|
|
214
|
-
<div class="container file-detail-table ">
|
|
215
|
-
{%- include fileformat/fileformatdetail.html -%}
|
|
216
|
-
</div>
|
|
217
|
-
{%- endif -%}
|
|
218
|
-
{%- if homeData.compare_formats -%}
|
|
219
|
-
<div class="container compare-table ">
|
|
220
|
-
{%- include fileformat/comparisonfiles.html -%}
|
|
221
|
-
</div>
|
|
222
|
-
{%- endif -%}
|
|
223
|
-
{%- assign langen = "en" -%}
|
|
224
|
-
{%- if site.data[folder][langen][file].categories -%}
|
|
225
|
-
{% assign categories= site.data[folder][langen][file].categories %}
|
|
226
|
-
{%- else -%}
|
|
227
|
-
{% assign categories= page.categories %}
|
|
228
|
-
{%- endif -%}
|
|
229
|
-
{%- if site.data[folder][langen][file].tags -%}
|
|
230
|
-
{% assign tags= site.data[folder][langen][file].tags %}
|
|
231
|
-
{%- else -%}
|
|
232
|
-
{% assign tags= page.tags %}
|
|
233
|
-
{%- endif -%}
|
|
234
|
-
{%- if categories.size> 0 or tags.size>0-%}
|
|
235
|
-
{%- include section/related_categories_post.html -%}
|
|
236
|
-
{%- else -%}
|
|
237
|
-
{%- include section/recent_posts.html -%}
|
|
238
|
-
{% endif %}
|
|
239
|
-
{%- if site.customblogdata -%}
|
|
240
|
-
{%- if categories.size> 0 or tags.size>0-%}
|
|
241
|
-
{%- include customblog/relatedposts.html -%}
|
|
242
|
-
{%- else -%}
|
|
243
|
-
{%- include customblog/recentposts.html -%}
|
|
244
|
-
{% endif %}
|
|
245
|
-
{%- endif -%}
|
|
246
|
-
{% include footer/index.html %}
|
|
247
|
-
{% include script.html %}
|
|
248
|
-
</body>
|
|
249
|
-
|
|
250
|
-
</html>
|
|
196
|
+
<li id="step{{forloop.index}}" class="how-to-list-item">
|
|
197
|
+
<span>{{forloop.index}}.</span>{{data | replace:
|
|
198
|
+
"$variable", page.value}}
|
|
199
|
+
</li>
|
|
200
|
+
{% endfor %}
|
|
201
|
+
</ol>
|
|
202
|
+
</div>
|
|
203
|
+
</div>
|
|
204
|
+
{%- if site.monumetricId and page.url != '/' and page.lang == "en"
|
|
205
|
+
-%}
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
{%- endif -%}
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
</section>
|
|
212
|
+
{%- endif -%} {%- assign showFaqs = true -%} {%- for item in site.noFaqsList
|
|
213
|
+
-%} {%- if item == page.lang -%} {%- assign showFaqs = false -%} {%- break
|
|
214
|
+
-%} {%- else -%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%}
|
|
215
|
+
{%- if showFaqs == true -%} {%- if homeData.FAQ -%}
|
|
216
|
+
<section class="faq-section">
|
|
217
|
+
<div class="container">
|
|
218
|
+
<div class="row">
|
|
219
|
+
<div class="col-md-8 mx-auto">
|
|
220
|
+
<div class="faq">
|
|
221
|
+
{%- if homeData.FAQ.size>0 -%}
|
|
222
|
+
<h3 class="feature-h1 text-center mb-4">
|
|
223
|
+
{{homeData.faqheading | default: 'Frequently Asked Questions'}}
|
|
224
|
+
</h3>
|
|
225
|
+
{%- endif -%}
|
|
226
|
+
<ul class="list-unstyled">
|
|
227
|
+
{% for data in homeData.FAQ %}
|
|
228
|
+
<li>
|
|
229
|
+
<h3 class="faq-question" itemprop="name">
|
|
230
|
+
{{data.question | replace: "$variable", page.value}}<em
|
|
231
|
+
style="transform: rotate(-135deg)"
|
|
232
|
+
>
|
|
233
|
+
<i></i
|
|
234
|
+
></em>
|
|
235
|
+
</h3>
|
|
236
|
+
<div style="display: block">
|
|
237
|
+
<p class="faq-answer" itemprop="text">
|
|
238
|
+
{{data.answer | replace: "$variable", page.value}}
|
|
239
|
+
</p>
|
|
240
|
+
</div>
|
|
241
|
+
</li>
|
|
242
|
+
{% endfor %}
|
|
243
|
+
</ul>
|
|
244
|
+
</div>
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</section>
|
|
249
|
+
{%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
|
|
250
|
+
include Rating/rating.html -%} {%- if homeData.USPS -%} {%- include
|
|
251
|
+
/Usp/usp.html -%} {%- endif -%} {%- if homeData.display_formats -%}
|
|
252
|
+
<div class="container file-detail-table">
|
|
253
|
+
{%- include fileformat/fileformatdetail.html -%}
|
|
254
|
+
</div>
|
|
255
|
+
{%- endif -%} {%- if homeData.compare_formats -%}
|
|
256
|
+
<div class="container compare-table">
|
|
257
|
+
{%- include fileformat/comparisonfiles.html -%}
|
|
258
|
+
</div>
|
|
259
|
+
{%- endif -%} {%- assign langen = "en" -%} {%- if
|
|
260
|
+
site.data[folder][langen][file].categories -%} {% assign categories=
|
|
261
|
+
site.data[folder][langen][file].categories %} {%- else -%} {% assign
|
|
262
|
+
categories= page.categories %} {%- endif -%} {%- if
|
|
263
|
+
site.data[folder][langen][file].tags -%} {% assign tags=
|
|
264
|
+
site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
|
|
265
|
+
page.tags %} {%- endif -%} {%- if categories.size> 0 or tags.size>0-%} {%-
|
|
266
|
+
include section/related_categories_post.html -%} {%- else -%} {%- include
|
|
267
|
+
section/recent_posts.html -%} {% endif %} {%- if site.customblogdata -%} {%-
|
|
268
|
+
if categories.size> 0 or tags.size>0-%} {%- include
|
|
269
|
+
customblog/relatedposts.html -%} {%- else -%} {%- include
|
|
270
|
+
customblog/recentposts.html -%} {% endif %} {%- endif -%} {% include
|
|
271
|
+
footer/index.html %} {% include script.html %}
|
|
272
|
+
</body>
|
|
273
|
+
</html>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-12-
|
|
11
|
+
date: 2022-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|