appscms-tools-theme 4.9.7 → 4.9.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/feature/.DS_Store +0 -0
- data/_data/feature/en/compress-pdf.json +10 -1
- data/_data/footer/.DS_Store +0 -0
- data/_data/home/.DS_Store +0 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/footer/footer.html +380 -255
- data/_includes/appscms/head/head.html +18 -18
- data/assets/.DS_Store +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd8efcf27843fb4fba1554789654542cd04703076bc55ad21b4b4a6e15eee5dc
|
4
|
+
data.tar.gz: 74e94ffc84e8f05fdf270b0fbb1cfab14d50cbba3afe0abcd88549ed26b78198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f9ef53f90d4bd9ae7f498226286602b1ce07bcf8d4c1d79bec4e1a447c9b16938508af2653de26f4c1766a11344a85a6c8aa71587fe3e07d856066ac70d80ef
|
7
|
+
data.tar.gz: e4a2da3db50d7e946ee5db67404638a89fdafe92b9f60e3207e27e7e97e6e564ca1687cbb1d441903bd051c21be1171da18e81b4370fa100b543283c22be57a5
|
data/_data/.DS_Store
CHANGED
Binary file
|
data/_data/feature/.DS_Store
CHANGED
Binary file
|
@@ -60,7 +60,16 @@
|
|
60
60
|
"content": "Setalarmforme.com is a cloud and web based application. You do not need to install any software to use Setalarmforme.com while setting alarms for $variable minutes from now."
|
61
61
|
}
|
62
62
|
],
|
63
|
-
|
63
|
+
"HOW_TO_CONTENT": {
|
64
|
+
"logoImageUrl": "/assets/pdf.svg",
|
65
|
+
"heading": "How to set alarm for \"Preview\" minutes:",
|
66
|
+
"steps": [
|
67
|
+
"Click on set alarm \"Preview\" ",
|
68
|
+
"Set $variable minutes for alarm.",
|
69
|
+
"Choose sound of your choice.",
|
70
|
+
"Click submit to set alarm, that's it !."
|
71
|
+
]
|
72
|
+
},
|
64
73
|
"FAQ": [
|
65
74
|
{
|
66
75
|
"question": "How many seconds from now, will the alarm ring ?",
|
Binary file
|
Binary file
|
data/_includes/.DS_Store
CHANGED
Binary file
|
data/_includes/appscms/.DS_Store
CHANGED
Binary file
|
@@ -9,54 +9,61 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
9
9
|
<div class="col-md-5 mb-3">
|
10
10
|
{%- if dataToShow.footerBrandLogoSvg -%}
|
11
11
|
{{dataToShow.footerBrandLogoSvg}} {%- else -%}
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
12
|
+
<img
|
13
|
+
loading="lazy"
|
14
|
+
src="{{dataToShow.logo}}"
|
15
|
+
width="{{dataToShow.width | default: logovalue}}"
|
16
|
+
height="{{dataToShow.height | default: logovalue}}"
|
17
|
+
title="logo"
|
18
|
+
class="footer-logo mb-3"
|
19
|
+
{%-
|
20
|
+
if
|
21
|
+
site.crossorigin
|
22
|
+
-%}
|
23
|
+
crossorigin
|
24
|
+
{%-
|
25
|
+
endif
|
26
|
+
-%}
|
27
|
+
/>
|
28
|
+
<div class="footer-title">{{dataToShow.heading}}</div>
|
29
29
|
{%- endif -%}
|
30
30
|
</div>
|
31
31
|
<div class="col-md-7">
|
32
32
|
<div class="row">
|
33
33
|
<div class="col-md-4 mb-3">
|
34
|
-
<div class="appscms-footer-category">
|
34
|
+
<div class="appscms-footer-category">
|
35
|
+
{{dataToShow.companytitle | default: 'Company' }}
|
36
|
+
</div>
|
35
37
|
{% for data in dataToShow.company %}
|
36
|
-
|
38
|
+
<a class="appscms-footer-link" href="{{data.url}}"
|
39
|
+
>{{data.name}}</a
|
40
|
+
>
|
37
41
|
{% endfor %}
|
38
42
|
</div>
|
39
43
|
|
40
44
|
<div class="col-md-4 mb-3">
|
41
|
-
|
42
45
|
<div class="appscms-footer-category">
|
43
46
|
{{dataToShow.legaltitle | default: 'Legal' }}
|
44
47
|
</div>
|
45
48
|
{% for data in dataToShow.legal %}
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
+
<a
|
50
|
+
class="appscms-footer-link"
|
51
|
+
target="_blank"
|
52
|
+
rel="noopener noreferrer"
|
53
|
+
href="{{data.url}}"
|
54
|
+
>{{data.name}}</a
|
55
|
+
>
|
49
56
|
{% endfor %}
|
50
|
-
|
51
57
|
</div>
|
52
58
|
|
53
59
|
<div class="col-md-4 mb-3">
|
54
|
-
|
55
60
|
<div class="appscms-footer-category">
|
56
61
|
{{dataToShow.networksitestitle | default: 'Network sites'}}
|
57
62
|
</div>
|
58
|
-
|
59
|
-
|
63
|
+
{% for data in networksitesData.networkSites %}
|
64
|
+
<a class="appscms-footer-link" href="{{data.url}}"
|
65
|
+
>{{data.name}}</a
|
66
|
+
>
|
60
67
|
{%- endfor -%}
|
61
68
|
</div>
|
62
69
|
</div>
|
@@ -69,242 +76,360 @@ languages/languages.html -%} {% assign dataFile= site.data[folder][lang][file]
|
|
69
76
|
>{{site.name}}</a
|
70
77
|
>
|
71
78
|
</div>
|
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
|
-
|
79
|
+
{%- if site.internationalization -%}
|
80
|
+
<div class="privacy-links-item">
|
81
|
+
<button
|
82
|
+
type="button"
|
83
|
+
class="drop-down-btn"
|
84
|
+
id="int-modal-btn"
|
85
|
+
data-toggle="modal"
|
86
|
+
data-target="#staticBackdrop"
|
87
|
+
>
|
88
|
+
<svg
|
89
|
+
height="20"
|
90
|
+
width="20"
|
91
|
+
viewBox="0 0 24 24"
|
92
|
+
xmlns="http://www.w3.org/2000/svg"
|
93
|
+
fill="currentColor"
|
94
|
+
>
|
95
|
+
<path
|
96
|
+
d="M12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM11.619 15.428L8.57155 15.4289C8.9774 16.7012 9.60471 17.924 10.4358 19.0678C10.8198 19.1532 11.2151 19.2073 11.6191 19.2282L11.619 15.428ZM15.4284 15.4289L12.38 15.428L12.3809 19.2282C12.7849 19.2073 13.1802 19.1532 13.5641 19.0687C14.3953 17.924 15.0226 16.7012 15.4284 15.4289ZM18.3762 15.4285L16.0984 15.4284C15.7811 16.5746 15.31 17.6754 14.703 18.7169C16.2768 18.0829 17.5774 16.9109 18.3762 15.4285ZM7.90159 15.4284L5.62381 15.4285C6.42258 16.9109 7.72324 18.0829 9.29827 18.717C8.69002 17.6754 8.21891 16.5746 7.90159 15.4284ZM7.4355 12.3803L4.77175 12.3809C4.81342 13.1846 4.98617 13.9535 5.26904 14.6669L7.71488 14.6666C7.55555 13.9205 7.46086 13.1572 7.4355 12.3803ZM15.9653 12.3808L12.38 12.38V14.666L15.6434 14.6671C15.8277 13.9178 15.9362 13.1537 15.9653 12.3808ZM19.2282 12.3809L16.5645 12.3803C16.5391 13.1572 16.4444 13.9205 16.2851 14.6666L18.731 14.6669C19.0138 13.9535 19.1866 13.1846 19.2282 12.3809ZM11.619 12.38L8.03469 12.3808C8.06384 13.1537 8.17229 13.9178 8.35656 14.6671L11.619 14.666V12.38ZM7.78068 8.95226L5.43294 8.95224C5.05284 9.76985 4.82095 10.6703 4.77175 11.6191L7.4329 11.6194C7.45634 10.71 7.57476 9.81899 7.78068 8.95226ZM15.5678 8.95239L12.38 8.952V11.619H15.968L15.9673 11.5875C15.9382 10.6945 15.8033 9.81313 15.5678 8.95239ZM18.5671 8.95224L16.2193 8.95226C16.4252 9.81899 16.5437 10.71 16.5671 11.6194L19.2282 11.6191C19.1791 10.6703 18.9472 9.76985 18.5671 8.95224ZM11.619 8.952L8.43217 8.95239C8.16446 9.93108 8.02667 10.9364 8.02667 11.9553L8.031 11.619H11.619V8.952ZM9.22964 5.31048L9.02453 5.39982C7.70745 5.99451 6.60023 6.97185 5.84458 8.19011L7.98594 8.19044C8.28727 7.19147 8.70587 6.2283 9.22964 5.31048ZM12.3809 4.77175L12.38 8.19L15.3312 8.18991C14.9387 7.06132 14.371 5.97399 13.6406 4.949C13.2322 4.85405 12.8116 4.79408 12.3809 4.77175ZM14.7693 5.31058L14.9321 5.60148C15.3809 6.43124 15.7444 7.2965 16.0141 8.19044L18.1554 8.19011C17.3607 6.9088 16.177 5.89399 14.7693 5.31058ZM10.5701 4.90311L10.3594 4.949C9.629 5.97399 9.06128 7.06132 8.66884 8.18991L11.619 8.19L11.6191 4.77175C11.262 4.79027 10.9117 4.83467 10.5701 4.90311Z"
|
97
|
+
></path>
|
98
|
+
</svg>
|
99
|
+
{%- for item in site.pages -%} {%- assign languagetext =
|
100
|
+
[item.lang] -%} {%- assign pagelink = page.permalink | split:
|
101
|
+
"/" | last-%} {%- assign itemlink = item.permalink | split: "/"
|
102
|
+
| last-%} {%- if pagelink == itemlink and page.lang == item.lang
|
103
|
+
and page.permalink == item.permalink -%} {{languagetext[1]}} {%-
|
104
|
+
endif -%} {%- endfor -%}
|
105
|
+
</button>
|
99
106
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
107
|
+
<div
|
108
|
+
class="modal fade"
|
109
|
+
id="staticBackdrop"
|
110
|
+
data-backdrop="static"
|
111
|
+
data-keyboard="false"
|
112
|
+
tabindex="-1"
|
113
|
+
aria-labelledby="staticBackdropLabel"
|
114
|
+
aria-hidden="true"
|
115
|
+
>
|
116
|
+
<div class="modal-dialog">
|
117
|
+
<div class="modal-content">
|
118
|
+
<div class="modal-header">
|
119
|
+
<h5
|
120
|
+
class="modal-title text-center w-100"
|
121
|
+
id="staticBackdropLabel"
|
122
|
+
>
|
123
|
+
Select Language
|
124
|
+
</h5>
|
125
|
+
<button
|
126
|
+
type="button"
|
127
|
+
class="close"
|
128
|
+
id="close-modal"
|
129
|
+
data-dismiss="modal"
|
130
|
+
aria-label="Close"
|
131
|
+
>
|
132
|
+
<span aria-hidden="true">×</span>
|
133
|
+
</button>
|
134
|
+
</div>
|
135
|
+
<ul class="modal-body language-drop-down-menu px-md-5">
|
136
|
+
{%- if page.permalink == nil -%}
|
137
|
+
<li class="language-drop-down-item font-weight-bold">
|
138
|
+
<a class="active-lang" href="/"
|
139
|
+
>English<svg
|
140
|
+
height="20"
|
141
|
+
width="20"
|
142
|
+
class="ml-auto"
|
143
|
+
viewBox="0 0 24 24"
|
144
|
+
fill="none"
|
145
|
+
xmlns="http://www.w3.org/2000/svg"
|
115
146
|
>
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
147
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
148
|
+
<g
|
149
|
+
id="SVGRepo_tracerCarrier"
|
150
|
+
stroke-linecap="round"
|
151
|
+
stroke-linejoin="round"
|
152
|
+
></g>
|
153
|
+
<g id="SVGRepo_iconCarrier">
|
154
|
+
<path
|
155
|
+
fill-rule="evenodd"
|
156
|
+
clip-rule="evenodd"
|
157
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
158
|
+
fill="#000000"
|
159
|
+
></path>
|
160
|
+
</g>
|
161
|
+
</svg>
|
162
|
+
</a>
|
163
|
+
</li>
|
164
|
+
{%- for i in matchurls -%} {%- for checklang in site.pages
|
165
|
+
-%} {%- if checklang.permalink == i -%} {%- assign
|
166
|
+
languagetext = [i] -%}
|
167
|
+
<li class="language-drop-down-item">
|
168
|
+
<a href="/{{i}}">{{languagetext[1]}}</a>
|
169
|
+
</li>
|
170
|
+
{%- endif -%} {%- endfor -%} {%- endfor -%} {%- else -%}
|
171
|
+
{%- if matchurls contains page.permalink -%}
|
172
|
+
<li class="language-drop-down-item">
|
173
|
+
<a href="/">English </a>
|
174
|
+
</li>
|
175
|
+
{%- for i in matchurls -%} {%- assign languagetext = [i]
|
176
|
+
-%} {%- if i== page.permalink -%}
|
177
|
+
<li class="language-drop-down-item font-weight-bold">
|
178
|
+
<a class="active-lang" href="/{{i}}"
|
179
|
+
>{{languagetext[1]}}
|
180
|
+
<svg
|
181
|
+
height="25"
|
182
|
+
width="25"
|
183
|
+
class="ml-auto"
|
184
|
+
viewBox="0 0 24 24"
|
185
|
+
fill="none"
|
186
|
+
xmlns="http://www.w3.org/2000/svg"
|
124
187
|
>
|
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
|
-
</ul>
|
191
|
-
|
192
|
-
</div>
|
193
|
-
</div>
|
188
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
189
|
+
<g
|
190
|
+
id="SVGRepo_tracerCarrier"
|
191
|
+
stroke-linecap="round"
|
192
|
+
stroke-linejoin="round"
|
193
|
+
></g>
|
194
|
+
<g id="SVGRepo_iconCarrier">
|
195
|
+
<path
|
196
|
+
fill-rule="evenodd"
|
197
|
+
clip-rule="evenodd"
|
198
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
199
|
+
fill="#000000"
|
200
|
+
></path>
|
201
|
+
</g>
|
202
|
+
</svg>
|
203
|
+
</a>
|
204
|
+
</li>
|
205
|
+
{%- else -%} {%- for checklang in site.pages -%} {%- if
|
206
|
+
checklang.permalink == i -%} {%- assign languagetext = [i]
|
207
|
+
-%}
|
208
|
+
<li class="language-drop-down-item">
|
209
|
+
<a href="/{{i}}">{{languagetext[1]}}</a>
|
210
|
+
</li>
|
211
|
+
{%- endif -%} {%- endfor -%} {%- endif -%} {%- endfor -%}
|
212
|
+
{%- else -%} {%- for item in site.pages -%} {%- assign
|
213
|
+
languagetext = [item.lang] -%} {%- assign pagelink =
|
214
|
+
page.permalink | split: "/" | last-%} {%- assign itemlink
|
215
|
+
= item.permalink | split: "/" | last-%} {%- if pagelink ==
|
216
|
+
itemlink and page.lang != item.lang and page.permalink !=
|
217
|
+
item.permalink -%}
|
218
|
+
<li class="language-drop-down-item">
|
219
|
+
<a href="{{item.permalink}}">{{languagetext[1]}} </a>
|
220
|
+
</li>
|
221
|
+
{%- endif -%} {%- if pagelink == itemlink and page.lang ==
|
222
|
+
item.lang -%}
|
223
|
+
<li class="language-drop-down-item font-weight-bold">
|
224
|
+
<a class="active-lang" href="{{item.permalink}}"
|
225
|
+
>{{languagetext[1]}}
|
226
|
+
<svg
|
227
|
+
height="20"
|
228
|
+
width="20"
|
229
|
+
class="ml-auto"
|
230
|
+
viewBox="0 0 24 24"
|
231
|
+
fill="none"
|
232
|
+
xmlns="http://www.w3.org/2000/svg"
|
233
|
+
>
|
234
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
235
|
+
<g
|
236
|
+
id="SVGRepo_tracerCarrier"
|
237
|
+
stroke-linecap="round"
|
238
|
+
stroke-linejoin="round"
|
239
|
+
></g>
|
240
|
+
<g id="SVGRepo_iconCarrier">
|
241
|
+
<path
|
242
|
+
fill-rule="evenodd"
|
243
|
+
clip-rule="evenodd"
|
244
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
245
|
+
fill="#000000"
|
246
|
+
></path>
|
247
|
+
</g>
|
248
|
+
</svg>
|
249
|
+
</a>
|
250
|
+
</li>
|
251
|
+
{%- endif -%} {%- endfor -%} {%- endif -%} {%- endif -%}
|
252
|
+
</ul>
|
194
253
|
</div>
|
195
254
|
</div>
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
<ul class="modal-body pt-0 px-md-5 language-drop-down-menu">
|
251
|
-
{%- for item in matchurls -%} {%- if item != 'zh-TW'
|
252
|
-
-%} {%- if item == 'en'-%} {%- if
|
253
|
-
dataFile.htmlLangAtt == item -%}
|
254
|
-
|
255
|
-
<a class="active-lang language-drop-down-item font-weight-bold" href="{{ page.permalink}}"
|
256
|
-
>English<svg height="20" width="20" class="ml-auto" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z" fill="#000000"></path> </g></svg>
|
257
|
-
</a>
|
258
|
-
|
259
|
-
{%- else -%}
|
260
|
-
|
261
|
-
{%- if dataFile.features -%}
|
262
|
-
<a class="language-drop-down-item" href="/">English</a>
|
263
|
-
{%- else -%}
|
264
|
-
<a class="language-drop-down-item" href="/{{ page.permalink | split: '/' | last}}"
|
265
|
-
>English
|
266
|
-
</a>
|
267
|
-
{%- endif -%}
|
268
|
-
|
269
|
-
{%- endif -%} {%- else -%} {%- if
|
270
|
-
dataFile.htmlLangAtt == item -%}
|
271
|
-
{%- if page.permalink | split: '/' | last != item
|
272
|
-
-%}
|
273
|
-
<a class="language-drop-down-item font-weight-bold active-lang" href="{{ page.permalink}}"
|
274
|
-
>{{[item][1]}}
|
275
|
-
<svg height="20" width="20" class="ml-auto" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z" fill="#000000"></path> </g></svg>
|
276
|
-
</a>
|
277
|
-
{%- else -%}
|
278
|
-
<a class="active-lang" href="/{{item}}"
|
279
|
-
>{{[item][1]}}
|
280
|
-
<svg height="20" width="20" class="ml-auto" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z" fill="#000000"></path> </g></svg>
|
281
|
-
</a>
|
282
|
-
{%- endif -%}
|
283
|
-
|
284
|
-
{%- else -%}
|
285
|
-
|
286
|
-
{%- if page.permalink | split: '/' | last != item
|
287
|
-
-%} {%- if dataFile.features -%}
|
288
|
-
<a class="language-drop-down-item" href="/{{item}}">{{[item][1]}} </a>
|
289
|
-
{%- else -%}
|
290
|
-
<a
|
291
|
-
class="language-drop-down-item"
|
292
|
-
href="/{{item}}/{{ page.permalink | split: '/' | last}}"
|
293
|
-
>{{[item][1]}}
|
294
|
-
</a>
|
295
|
-
{%- endif -%} {%- else -%}
|
296
|
-
<a class="language-drop-down-item" href="/{{item}}">{{[item][1]}} </a>
|
297
|
-
{%- endif -%}
|
298
|
-
|
299
|
-
{%- endif -%} {%- endif -%} {%- endif -%} {%- endfor
|
300
|
-
-%}
|
301
|
-
</ul>
|
302
|
-
|
303
|
-
</div>
|
255
|
+
</div>
|
256
|
+
</div>
|
257
|
+
{%- endif -%} {%- if page.nointernationalization -%}
|
258
|
+
<div></div>
|
259
|
+
{%- else -%} {%- if site.internationalizationall -%}
|
260
|
+
<div class="privacy-links-item">
|
261
|
+
<button
|
262
|
+
type="button"
|
263
|
+
class="drop-down-btn"
|
264
|
+
id="int-modal-btn"
|
265
|
+
data-toggle="modal"
|
266
|
+
data-target="#staticBackdrop"
|
267
|
+
>
|
268
|
+
<svg
|
269
|
+
height="20"
|
270
|
+
width="20"
|
271
|
+
viewBox="0 0 24 24"
|
272
|
+
xmlns="http://www.w3.org/2000/svg"
|
273
|
+
fill="#000000"
|
274
|
+
>
|
275
|
+
<path
|
276
|
+
d="M12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM11.619 15.428L8.57155 15.4289C8.9774 16.7012 9.60471 17.924 10.4358 19.0678C10.8198 19.1532 11.2151 19.2073 11.6191 19.2282L11.619 15.428ZM15.4284 15.4289L12.38 15.428L12.3809 19.2282C12.7849 19.2073 13.1802 19.1532 13.5641 19.0687C14.3953 17.924 15.0226 16.7012 15.4284 15.4289ZM18.3762 15.4285L16.0984 15.4284C15.7811 16.5746 15.31 17.6754 14.703 18.7169C16.2768 18.0829 17.5774 16.9109 18.3762 15.4285ZM7.90159 15.4284L5.62381 15.4285C6.42258 16.9109 7.72324 18.0829 9.29827 18.717C8.69002 17.6754 8.21891 16.5746 7.90159 15.4284ZM7.4355 12.3803L4.77175 12.3809C4.81342 13.1846 4.98617 13.9535 5.26904 14.6669L7.71488 14.6666C7.55555 13.9205 7.46086 13.1572 7.4355 12.3803ZM15.9653 12.3808L12.38 12.38V14.666L15.6434 14.6671C15.8277 13.9178 15.9362 13.1537 15.9653 12.3808ZM19.2282 12.3809L16.5645 12.3803C16.5391 13.1572 16.4444 13.9205 16.2851 14.6666L18.731 14.6669C19.0138 13.9535 19.1866 13.1846 19.2282 12.3809ZM11.619 12.38L8.03469 12.3808C8.06384 13.1537 8.17229 13.9178 8.35656 14.6671L11.619 14.666V12.38ZM7.78068 8.95226L5.43294 8.95224C5.05284 9.76985 4.82095 10.6703 4.77175 11.6191L7.4329 11.6194C7.45634 10.71 7.57476 9.81899 7.78068 8.95226ZM15.5678 8.95239L12.38 8.952V11.619H15.968L15.9673 11.5875C15.9382 10.6945 15.8033 9.81313 15.5678 8.95239ZM18.5671 8.95224L16.2193 8.95226C16.4252 9.81899 16.5437 10.71 16.5671 11.6194L19.2282 11.6191C19.1791 10.6703 18.9472 9.76985 18.5671 8.95224ZM11.619 8.952L8.43217 8.95239C8.16446 9.93108 8.02667 10.9364 8.02667 11.9553L8.031 11.619H11.619V8.952ZM9.22964 5.31048L9.02453 5.39982C7.70745 5.99451 6.60023 6.97185 5.84458 8.19011L7.98594 8.19044C8.28727 7.19147 8.70587 6.2283 9.22964 5.31048ZM12.3809 4.77175L12.38 8.19L15.3312 8.18991C14.9387 7.06132 14.371 5.97399 13.6406 4.949C13.2322 4.85405 12.8116 4.79408 12.3809 4.77175ZM14.7693 5.31058L14.9321 5.60148C15.3809 6.43124 15.7444 7.2965 16.0141 8.19044L18.1554 8.19011C17.3607 6.9088 16.177 5.89399 14.7693 5.31058ZM10.5701 4.90311L10.3594 4.949C9.629 5.97399 9.06128 7.06132 8.66884 8.18991L11.619 8.19L11.6191 4.77175C11.262 4.79027 10.9117 4.83467 10.5701 4.90311Z"
|
277
|
+
></path>
|
278
|
+
</svg>
|
279
|
+
{{dataFile.Language}}
|
280
|
+
</button>
|
281
|
+
<div
|
282
|
+
class="modal fade"
|
283
|
+
id="staticBackdrop"
|
284
|
+
data-backdrop="static"
|
285
|
+
data-keyboard="false"
|
286
|
+
tabindex="-1"
|
287
|
+
aria-labelledby="staticBackdropLabel"
|
288
|
+
aria-hidden="true"
|
289
|
+
>
|
290
|
+
<div class="modal-dialog">
|
291
|
+
<div class="modal-content feature1-in8">
|
292
|
+
<div class="modal-header border-0">
|
293
|
+
<h5
|
294
|
+
class="modal-title text-center w-100 font-weight-bolder"
|
295
|
+
style="color: #000"
|
296
|
+
id="staticBackdropLabel"
|
297
|
+
>
|
298
|
+
Select Language
|
299
|
+
</h5>
|
300
|
+
<button
|
301
|
+
type="button"
|
302
|
+
class="close"
|
303
|
+
id="close-modal"
|
304
|
+
data-dismiss="modal"
|
305
|
+
aria-label="Close"
|
306
|
+
>
|
307
|
+
<span aria-hidden="true">×</span>
|
308
|
+
</button>
|
304
309
|
</div>
|
310
|
+
|
311
|
+
<ul class="modal-body pt-0 px-md-5 language-drop-down-menu">
|
312
|
+
{%- for item in matchurls -%} {%- if item != 'zh-TW' -%}
|
313
|
+
{%- if item == 'en'-%} {%- if dataFile.htmlLangAtt == item
|
314
|
+
-%}
|
315
|
+
|
316
|
+
<a
|
317
|
+
class="active-lang language-drop-down-item font-weight-bold"
|
318
|
+
href="{{ page.permalink}}"
|
319
|
+
>English<svg
|
320
|
+
height="20"
|
321
|
+
width="20"
|
322
|
+
class="ml-auto"
|
323
|
+
viewBox="0 0 24 24"
|
324
|
+
fill="none"
|
325
|
+
xmlns="http://www.w3.org/2000/svg"
|
326
|
+
>
|
327
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
328
|
+
<g
|
329
|
+
id="SVGRepo_tracerCarrier"
|
330
|
+
stroke-linecap="round"
|
331
|
+
stroke-linejoin="round"
|
332
|
+
></g>
|
333
|
+
<g id="SVGRepo_iconCarrier">
|
334
|
+
<path
|
335
|
+
fill-rule="evenodd"
|
336
|
+
clip-rule="evenodd"
|
337
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
338
|
+
fill="#000000"
|
339
|
+
></path>
|
340
|
+
</g>
|
341
|
+
</svg>
|
342
|
+
</a>
|
343
|
+
|
344
|
+
{%- else -%} {%- if dataFile.features -%}
|
345
|
+
<a class="language-drop-down-item" href="/">English</a>
|
346
|
+
{%- else -%}
|
347
|
+
<a
|
348
|
+
class="language-drop-down-item"
|
349
|
+
href="/{{ page.permalink | split: '/' | last}}"
|
350
|
+
>English
|
351
|
+
</a>
|
352
|
+
{%- endif -%} {%- endif -%} {%- else -%} {%- if
|
353
|
+
dataFile.htmlLangAtt == item -%} {%- if page.permalink |
|
354
|
+
split: '/' | last != item -%}
|
355
|
+
<a
|
356
|
+
class="language-drop-down-item font-weight-bold active-lang"
|
357
|
+
href="{{ page.permalink}}"
|
358
|
+
>{{[item][1]}}
|
359
|
+
<svg
|
360
|
+
height="20"
|
361
|
+
width="20"
|
362
|
+
class="ml-auto"
|
363
|
+
viewBox="0 0 24 24"
|
364
|
+
fill="none"
|
365
|
+
xmlns="http://www.w3.org/2000/svg"
|
366
|
+
>
|
367
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
368
|
+
<g
|
369
|
+
id="SVGRepo_tracerCarrier"
|
370
|
+
stroke-linecap="round"
|
371
|
+
stroke-linejoin="round"
|
372
|
+
></g>
|
373
|
+
<g id="SVGRepo_iconCarrier">
|
374
|
+
<path
|
375
|
+
fill-rule="evenodd"
|
376
|
+
clip-rule="evenodd"
|
377
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
378
|
+
fill="#000000"
|
379
|
+
></path>
|
380
|
+
</g>
|
381
|
+
</svg>
|
382
|
+
</a>
|
383
|
+
{%- else -%}
|
384
|
+
<a class="active-lang" href="/{{item}}"
|
385
|
+
>{{[item][1]}}
|
386
|
+
<svg
|
387
|
+
height="20"
|
388
|
+
width="20"
|
389
|
+
class="ml-auto"
|
390
|
+
viewBox="0 0 24 24"
|
391
|
+
fill="none"
|
392
|
+
xmlns="http://www.w3.org/2000/svg"
|
393
|
+
>
|
394
|
+
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
395
|
+
<g
|
396
|
+
id="SVGRepo_tracerCarrier"
|
397
|
+
stroke-linecap="round"
|
398
|
+
stroke-linejoin="round"
|
399
|
+
></g>
|
400
|
+
<g id="SVGRepo_iconCarrier">
|
401
|
+
<path
|
402
|
+
fill-rule="evenodd"
|
403
|
+
clip-rule="evenodd"
|
404
|
+
d="M17.0303 8.78039L8.99993 16.8107L5.4696 13.2804L6.53026 12.2197L8.99993 14.6894L15.9696 7.71973L17.0303 8.78039Z"
|
405
|
+
fill="#000000"
|
406
|
+
></path>
|
407
|
+
</g>
|
408
|
+
</svg>
|
409
|
+
</a>
|
410
|
+
{%- endif -%} {%- else -%} {%- if page.permalink | split:
|
411
|
+
'/' | last != item -%} {%- if dataFile.features -%}
|
412
|
+
<a class="language-drop-down-item" href="/{{item}}"
|
413
|
+
>{{[item][1]}}
|
414
|
+
</a>
|
415
|
+
{%- else -%}
|
416
|
+
<a
|
417
|
+
class="language-drop-down-item"
|
418
|
+
href="/{{item}}/{{ page.permalink | split: '/' | last}}"
|
419
|
+
>{{[item][1]}}
|
420
|
+
</a>
|
421
|
+
{%- endif -%} {%- else -%}
|
422
|
+
<a class="language-drop-down-item" href="/{{item}}"
|
423
|
+
>{{[item][1]}}
|
424
|
+
</a>
|
425
|
+
{%- endif -%} {%- endif -%} {%- endif -%} {%- endif -%}
|
426
|
+
{%- endfor -%}
|
427
|
+
</ul>
|
305
428
|
</div>
|
306
429
|
</div>
|
307
|
-
|
430
|
+
</div>
|
431
|
+
</div>
|
432
|
+
{%- endif -%} {%- endif -%}
|
308
433
|
</div>
|
309
434
|
</div>
|
310
435
|
</div>
|
@@ -336,32 +336,32 @@
|
|
336
336
|
<script type="application/ld+json">
|
337
337
|
{
|
338
338
|
"@context": "http://schema.org",
|
339
|
-
|
340
|
-
|
339
|
+
"@type": "HowTo",
|
340
|
+
"name": "{{ HOW_TO_CONTENT.heading | replace: '"', "'" }}",
|
341
341
|
{% if HOW_TO_CONTENT.YoutubeVideoUrl %}
|
342
342
|
"potentialAction": {
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
343
|
+
"@type": "WatchAction",
|
344
|
+
"target": {
|
345
|
+
"@type": "EntryPoint",
|
346
|
+
"urlTemplate": "{{ HOW_TO_CONTENT.YoutubeVideoUrl }}",
|
347
|
+
"actionPlatform": [
|
348
|
+
"http://schema.org/DesktopWebPlatform",
|
349
|
+
"http://schema.org/AndroidPlatform",
|
350
|
+
"http://schema.org/IOSPlatform"
|
351
|
+
]
|
352
|
+
}
|
353
|
+
},
|
354
354
|
{% else %}
|
355
355
|
"image": {
|
356
|
-
|
357
|
-
|
356
|
+
"@type": "ImageObject",
|
357
|
+
"url": "{{ HOW_TO_CONTENT.logoImageUrl }}"
|
358
358
|
},
|
359
359
|
{% endif %}
|
360
360
|
"step": [
|
361
361
|
{% for step in HOW_TO_CONTENT.steps %}
|
362
362
|
{
|
363
|
-
|
364
|
-
|
363
|
+
"@type": "HowToStep",
|
364
|
+
"text": "{{ step | replace: '"', "'" }}"
|
365
365
|
}{% unless forloop.last %},{% endunless %}
|
366
366
|
{% endfor %}
|
367
367
|
]
|
@@ -385,7 +385,7 @@
|
|
385
385
|
"item": {
|
386
386
|
"@type": "ImageObject",
|
387
387
|
"name": "Infographic {{ position }}",
|
388
|
-
"description": "{{ infographic.description }}",
|
388
|
+
"description": "{{ infographic.description | replace: '"', "'" }}",
|
389
389
|
"contentUrl": "{{ infographic.image }}"
|
390
390
|
}
|
391
391
|
}{% unless forloop.last %},{% endunless %}
|
data/assets/.DS_Store
CHANGED
Binary file
|
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: 4.9.
|
4
|
+
version: 4.9.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- _data/feature/tr/compress-pdf.json
|
87
87
|
- _data/filecomparison/en/filecomparison.json
|
88
88
|
- _data/fileinfo/en/fileinfo.json
|
89
|
+
- _data/footer/.DS_Store
|
89
90
|
- _data/footer/en/data.json
|
90
91
|
- _data/footer/hi/data.json
|
91
92
|
- _data/footer/networksites.json
|
@@ -94,6 +95,7 @@ files:
|
|
94
95
|
- _data/header/hi/data.json
|
95
96
|
- _data/help/en/help.json
|
96
97
|
- _data/home-1/en/en.json
|
98
|
+
- _data/home/.DS_Store
|
97
99
|
- _data/home/en/en.json
|
98
100
|
- _data/home/en/photoeffects.json
|
99
101
|
- _data/home/en/posters.json
|