appscms-tools-theme 4.9.5 → 4.9.6
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/.DS_Store +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/head/head.html +187 -48
- data/assets/.DS_Store +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 036c093f5d79f79927ec4a3172a4a707c3b47467ee557d9ba07700c8e562754e
|
|
4
|
+
data.tar.gz: 0f7753d8b4bdaf9f4bd6944dbcb2b8f39a4868ce8d51a4001b14260f79a1d3a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b6f21c6a4438aec8dbf5ed2b14302b0cb5dd466622606708617794d1c07fd1627e23df91bb4e97702b03c56db728ab5848f2d03cb57d5e780c0620fd9e8d609
|
|
7
|
+
data.tar.gz: ccb767740b01f1bf02308b6dfdc7de315db0b76fd1bab754a90a1f4ac2c320a76384383cf62cdd4fa7e4a7feaf2b1d862c24e6a64d99aa033f92e71dca2d0929
|
data/_includes/.DS_Store
CHANGED
|
Binary file
|
data/_includes/appscms/.DS_Store
CHANGED
|
Binary file
|
|
@@ -49,62 +49,171 @@
|
|
|
49
49
|
|
|
50
50
|
{%- endif -%} {%- if page.layout == "aboutUs" -%}
|
|
51
51
|
|
|
52
|
-
<meta
|
|
52
|
+
<meta
|
|
53
|
+
name="description"
|
|
54
|
+
content="{{site.name}} - About us | {{description}}"
|
|
55
|
+
/>
|
|
53
56
|
{% elsif page.layout == "termAndCondition" %}
|
|
54
|
-
<meta
|
|
57
|
+
<meta
|
|
58
|
+
name="description"
|
|
59
|
+
content="{{site.name}} - Terms and conditions | {{description}}"
|
|
60
|
+
/>
|
|
55
61
|
{% elsif page.layout == "disclaimer" %}
|
|
56
|
-
<meta
|
|
62
|
+
<meta
|
|
63
|
+
name="description"
|
|
64
|
+
content="{{site.name}} - Disclaimer | {{description}}"
|
|
65
|
+
/>
|
|
57
66
|
{% elsif page.layout == "privacyPolicy" %}
|
|
58
|
-
<meta
|
|
67
|
+
<meta
|
|
68
|
+
name="description"
|
|
69
|
+
content="{{site.name}} - Privacy policy | {{description}}"
|
|
70
|
+
/>
|
|
59
71
|
{% elsif page.layout == "contactUs" %}
|
|
60
|
-
<meta
|
|
72
|
+
<meta
|
|
73
|
+
name="description"
|
|
74
|
+
content="{{site.name}} - Contact | {{description}}"
|
|
75
|
+
/>
|
|
61
76
|
{%- else -%}
|
|
62
77
|
<meta name="description" content="{{description}}" />
|
|
63
78
|
|
|
64
|
-
{%- endif -%}
|
|
65
|
-
{%- if page.customLink -%}
|
|
79
|
+
{%- endif -%} {%- if page.customLink -%}
|
|
66
80
|
<link rel="canonical" href="{{site.url | append: page.customLink}}" />
|
|
67
81
|
{%- else -%}
|
|
68
82
|
<link rel="canonical" href="{{site.url | append: page.url}}" />
|
|
69
83
|
{%- endif -%}
|
|
70
84
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
85
|
+
<link
|
|
86
|
+
rel="stylesheet"
|
|
87
|
+
href="/assets/css/bootstrap.min.css"
|
|
88
|
+
{%-
|
|
89
|
+
if
|
|
90
|
+
site.crossorigin
|
|
91
|
+
-%}
|
|
92
|
+
{{
|
|
93
|
+
}}
|
|
94
|
+
crossorigin="anonymous"
|
|
95
|
+
{%-
|
|
96
|
+
endif
|
|
97
|
+
-%}
|
|
98
|
+
/>
|
|
74
99
|
|
|
75
100
|
{%- if dataToShow.css -%}
|
|
76
101
|
|
|
77
|
-
<link
|
|
78
|
-
|
|
102
|
+
<link
|
|
103
|
+
rel="stylesheet"
|
|
104
|
+
href="{{dataToShow.css}}"
|
|
105
|
+
{%-
|
|
106
|
+
if
|
|
107
|
+
site.crossorigin
|
|
108
|
+
-%}
|
|
109
|
+
{{
|
|
110
|
+
}}
|
|
111
|
+
crossorigin="anonymous"
|
|
112
|
+
{%-
|
|
113
|
+
endif
|
|
114
|
+
-%}
|
|
115
|
+
/>
|
|
79
116
|
{%- else -%} {%- endif -%} {%- if site.monumetricId -%}
|
|
80
117
|
|
|
81
|
-
<link
|
|
82
|
-
|
|
118
|
+
<link
|
|
119
|
+
rel="stylesheet"
|
|
120
|
+
href="/assets/css/responsive.css"
|
|
121
|
+
{%-
|
|
122
|
+
if
|
|
123
|
+
site.crossorigin
|
|
124
|
+
-%}
|
|
125
|
+
{{
|
|
126
|
+
}}
|
|
127
|
+
crossorigin="anonymous"
|
|
128
|
+
{%-
|
|
129
|
+
endif
|
|
130
|
+
-%}
|
|
131
|
+
/>
|
|
83
132
|
|
|
84
133
|
{%- endif -%} {%- if page.layout == "calculator" -%}
|
|
85
134
|
|
|
86
|
-
<link
|
|
87
|
-
|
|
135
|
+
<link
|
|
136
|
+
rel="stylesheet"
|
|
137
|
+
href="/assets/css/calculators.css"
|
|
138
|
+
{%-
|
|
139
|
+
if
|
|
140
|
+
site.crossorigin
|
|
141
|
+
-%}
|
|
142
|
+
{{
|
|
143
|
+
}}
|
|
144
|
+
crossorigin="anonymous"
|
|
145
|
+
{%-
|
|
146
|
+
endif
|
|
147
|
+
-%}
|
|
148
|
+
/>
|
|
88
149
|
|
|
89
150
|
{%- endif -%} {%- if page.layout == "home-1" -%}
|
|
90
151
|
|
|
91
|
-
<link
|
|
92
|
-
|
|
152
|
+
<link
|
|
153
|
+
rel="stylesheet"
|
|
154
|
+
href="/assets/css/home-1.css"
|
|
155
|
+
{%-
|
|
156
|
+
if
|
|
157
|
+
site.crossorigin
|
|
158
|
+
-%}
|
|
159
|
+
{{
|
|
160
|
+
}}
|
|
161
|
+
crossorigin="anonymous"
|
|
162
|
+
{%-
|
|
163
|
+
endif
|
|
164
|
+
-%}
|
|
165
|
+
/>
|
|
93
166
|
|
|
94
167
|
{%- endif -%} {%- if page.layout == "feature-1" or page.newBox or page.layout
|
|
95
168
|
== "feature-download" -%}
|
|
96
169
|
|
|
97
|
-
<link
|
|
98
|
-
|
|
170
|
+
<link
|
|
171
|
+
rel="stylesheet"
|
|
172
|
+
href="/assets/css/feature-1.css"
|
|
173
|
+
{%-
|
|
174
|
+
if
|
|
175
|
+
site.crossorigin
|
|
176
|
+
-%}
|
|
177
|
+
{{
|
|
178
|
+
}}
|
|
179
|
+
crossorigin="anonymous"
|
|
180
|
+
{%-
|
|
181
|
+
endif
|
|
182
|
+
-%}
|
|
183
|
+
/>
|
|
99
184
|
|
|
100
185
|
{%- endif -%} {%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
101
186
|
|
|
102
|
-
<link
|
|
103
|
-
|
|
187
|
+
<link
|
|
188
|
+
rel="stylesheet"
|
|
189
|
+
href="/assets/css/common.css"
|
|
190
|
+
{%-
|
|
191
|
+
if
|
|
192
|
+
site.crossorigin
|
|
193
|
+
-%}
|
|
194
|
+
{{
|
|
195
|
+
}}
|
|
196
|
+
crossorigin="anonymous"
|
|
197
|
+
{%-
|
|
198
|
+
endif
|
|
199
|
+
-%}
|
|
200
|
+
/>
|
|
104
201
|
|
|
105
202
|
{%- endif -%} {%- if page.layout == "contenttool-home" -%}
|
|
106
|
-
<link
|
|
107
|
-
|
|
203
|
+
<link
|
|
204
|
+
rel="stylesheet"
|
|
205
|
+
href="/assets/css/appscms-contenttool.css"
|
|
206
|
+
{%-
|
|
207
|
+
if
|
|
208
|
+
site.crossorigin
|
|
209
|
+
-%}
|
|
210
|
+
{{
|
|
211
|
+
}}
|
|
212
|
+
crossorigin="anonymous"
|
|
213
|
+
{%-
|
|
214
|
+
endif
|
|
215
|
+
-%}
|
|
216
|
+
/>
|
|
108
217
|
{%- endif -%}
|
|
109
218
|
|
|
110
219
|
<link rel="stylesheet" href="/assets/css/appscms-variables.css" />
|
|
@@ -131,42 +240,72 @@
|
|
|
131
240
|
<link rel="stylesheet" href="/assets/css/devtool-main.css" />
|
|
132
241
|
{%- endif -%} {%- if page.layout == 'appscms-imagekit' -%}
|
|
133
242
|
<link rel="stylesheet" href="/assets/css/appscms-feature.css" />
|
|
134
|
-
<link
|
|
135
|
-
|
|
243
|
+
<link
|
|
244
|
+
rel="stylesheet"
|
|
245
|
+
href="/assets/css/appscms-imagekit.css"
|
|
246
|
+
{%-
|
|
247
|
+
if
|
|
248
|
+
site.crossorigin
|
|
249
|
+
-%}
|
|
250
|
+
{{
|
|
251
|
+
}}
|
|
252
|
+
crossorigin="anonymous"
|
|
253
|
+
{%-
|
|
254
|
+
endif
|
|
255
|
+
-%}
|
|
256
|
+
/>
|
|
136
257
|
|
|
137
258
|
{%- endif -%}
|
|
138
259
|
<meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
|
|
139
260
|
<meta property="og:title" content="{{title}}" />
|
|
140
261
|
<meta property="og:description" content="{{description}}" />
|
|
141
262
|
<meta property="og:type" content="website" />
|
|
142
|
-
|
|
263
|
+
{%- if page.customLink -%}
|
|
264
|
+
<meta
|
|
265
|
+
data-rh="true"
|
|
266
|
+
property="og:url"
|
|
267
|
+
content="{{site.url | append: page.customLink}}"
|
|
268
|
+
/>
|
|
269
|
+
{%- else -%}
|
|
270
|
+
<meta
|
|
271
|
+
data-rh="true"
|
|
272
|
+
property="og:url"
|
|
273
|
+
content="{{site.url | append: page.url}}"
|
|
274
|
+
/>
|
|
275
|
+
{%- endif -%}
|
|
143
276
|
<meta data-rh="true" property="og:site_name" content="{{site.name}}" />
|
|
144
277
|
<meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
|
|
145
|
-
|
|
278
|
+
{%- if page.customLink -%}
|
|
279
|
+
<meta
|
|
280
|
+
data-rh="true"
|
|
281
|
+
property="twitter:url"
|
|
282
|
+
content="{{site.url | append: page.customLink}}"
|
|
283
|
+
/>
|
|
284
|
+
{%- else -%}
|
|
285
|
+
<meta
|
|
286
|
+
data-rh="true"
|
|
287
|
+
property="twitter:url"
|
|
288
|
+
content="{{site.url | append: page.url}}"
|
|
289
|
+
/>
|
|
290
|
+
{%- endif -%}
|
|
146
291
|
<meta data-rh="true" name="twitter:title" content="{{title}}" />
|
|
147
292
|
<meta data-rh="true" name="twitter:description" content="{{description}}" />
|
|
148
|
-
<meta
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
293
|
+
<meta
|
|
294
|
+
data-rh="true"
|
|
295
|
+
name="twitter:image:src"
|
|
296
|
+
content="{{site.url}}{{favicon}}"
|
|
297
|
+
/>
|
|
298
|
+
{% include adsense/adsense.html %} {%- if page.noindex -%}
|
|
152
299
|
<meta name="robots" content="noindex" />
|
|
153
|
-
{%- endif -%}
|
|
154
|
-
|
|
155
|
-
{%
|
|
156
|
-
{% if page.lang != "en" %}
|
|
157
|
-
{% unless whitelist_urls contains page.url %}
|
|
300
|
+
{%- endif -%} {% assign whitelist_urls =
|
|
301
|
+
site.data.noindexURLs.internatlionalization_whitelist_urls %} {% if page.lang
|
|
302
|
+
!= "en" %} {% unless whitelist_urls contains page.url %}
|
|
158
303
|
<meta name="robots" content="noindex" />
|
|
159
|
-
{% endunless %}
|
|
160
|
-
{%
|
|
161
|
-
|
|
162
|
-
{% assign blacklist_urls = site.data.noindexURLs.blacklist_urls %}
|
|
163
|
-
{% if blacklist_urls contains page.url %}
|
|
304
|
+
{% endunless %} {% endif %} {% assign blacklist_urls =
|
|
305
|
+
site.data.noindexURLs.blacklist_urls %} {% if blacklist_urls contains page.url
|
|
306
|
+
%}
|
|
164
307
|
<meta name="robots" content="noindex" />
|
|
165
|
-
{% endif %}
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
{%- if site.pwa -%}
|
|
308
|
+
{% endif %} {%- if site.pwa -%}
|
|
170
309
|
<link rel="manifest" href="/assets/js/manifest.json" />
|
|
171
310
|
|
|
172
311
|
{%- endif -%} {%- if site.internationalization or site.internationalizationall
|
|
@@ -346,4 +485,4 @@
|
|
|
346
485
|
monumetric/monumetric.html -%} {%- endif -%} {%- include monumetric/ads.html
|
|
347
486
|
-%} {%- if page.layout == "feature" or page.layout == "home" -%} {%- include
|
|
348
487
|
monumetric/profitablecpmgate.html -%} {%- endif -%}
|
|
349
|
-
</head>
|
|
488
|
+
</head>
|
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.6
|
|
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-01-
|
|
11
|
+
date: 2025-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -623,7 +623,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
623
623
|
- !ruby/object:Gem::Version
|
|
624
624
|
version: '0'
|
|
625
625
|
requirements: []
|
|
626
|
-
rubygems_version: 3.3.
|
|
626
|
+
rubygems_version: 3.3.26
|
|
627
627
|
signing_key:
|
|
628
628
|
specification_version: 4
|
|
629
629
|
summary: Appscms theme for all tools
|