appscms-tools-theme 3.5.0 → 3.5.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/_layouts/feature.html +23 -110
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2fbf05a8c0a675bd818fe238dc01d10c61db5f08de67b5600390241a86f7a39
4
- data.tar.gz: f3e17c78626db7b077b8d3a20438fb63971d998389e34b1aada02051dcaf660e
3
+ metadata.gz: fe9f797519e3684b9e03027cf55ea9ad3bcc35ebc7e8b8863260866e0e27afc4
4
+ data.tar.gz: ed59d5f103c51cd34a540bfaaff4a19c76787cf94726c4a8aa1e0d135d2efc37
5
5
  SHA512:
6
- metadata.gz: ac8120295e36723a17599c521eb342a5bf8937ad9a0706a86652b4fb572e21c335296b725fd1bded5e028de864959fed6a39459efbb4818f9b04b9825c6a54fd
7
- data.tar.gz: e219fe85cf56b857b5e5f7fbc54eed5f411d0b5b4b36c8843bdafc99913a1d9d65c572dc870fc1127b352bbc725d5aace5e7d31bd7b93c3adbe89356257e02e8
6
+ metadata.gz: 440975de689a4441191d11f86d1906560f7009cc7370654136ea13badefa3223f33a4ae1947d9e1102fc49e841d7df34d0c279f919ee9fa7208f48f6e0a955d9
7
+ data.tar.gz: 7f0d6cda4fec28099ebee880a1ef0b5b0fda1c6c38a17e3a8988aaa6b4569f2f6022186a2ac81c825f405b9b60d1100cd3b800c4dcff6747d1b47c785bb2dfd4
@@ -54,6 +54,8 @@
54
54
  </h2>
55
55
  </div>
56
56
  </div>
57
+
58
+
57
59
  {%- endif -%} {%- if site.noFeatureBox == true -%}
58
60
  <div class="feature-content-box" id="theme-content-box">{{content}}</div>
59
61
  {%- elsif site.newFeatureBox -%}
@@ -108,72 +110,11 @@
108
110
  <p id="error" class="p-3"></p>
109
111
  </div>
110
112
  </div>
111
- {%- endif -%} {%- if page.workspace -%}
112
- <div class="workspace" style="display: none">
113
+ <div class="workspace">
113
114
  <div class="row mx-auto">
114
115
  <div class="col-md-10 mx-auto">{{content}}</div>
115
116
  </div>
116
117
  </div>
117
- {%- else -%}
118
- <div class="workspace" style="display: none">
119
- <div class="row">
120
- <div class="col-12">
121
- <div class="download-wrapper mt-3">
122
- <div class="row rowclass">
123
- <div class="col-7">
124
- <div class="d-flex align-items-center">
125
- <div class="select-format-title">image's format</div>
126
- <div class="download-format">
127
- <select name="image-format" id="image-format">
128
- {%- if pageData.downloadFormats -%} {%- for item in
129
- pageData.downloadFormats -%}
130
- <option value="{{item}}">{{item}}</option>
131
- {%- endfor -%} {%- else -%}
132
- <option value="png">png</option>
133
- <option value="jpg">jpg</option>
134
- <option value="jpeg">jpeg</option>
135
- <option value="webp">webp</option>
136
- <option value="gif">gif</option>
137
- {%- endif -%}
138
- </select>
139
- </div>
140
- </div>
141
- </div>
142
- <div class="col-5">
143
- <div class="d-flex align-items-center">
144
- <button id="download-button" style="background-color: {{pageData.color}};">
145
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
146
- <path
147
- d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z" />
148
- </svg>Download
149
- </button>
150
- </div>
151
- </div>
152
- </div>
153
- </div>
154
- </div>
155
- </div>
156
- {%- if page.commonStructure != false -%}
157
- <div class="row">
158
- <div class="col-md-7 mx-auto mb-2">
159
- <div class="select-img-panel">
160
- <div id="saving-data" style="display: none">
161
- <img loading="lazy" src="/assets/images/loader.gif" alt="saving" />
162
- <span class="ml-2" {%- if site.crossorigin -%} crossorigin {%- endif -%}>Saving your images...</span>
163
- </div>
164
- <div id="canvas-box-panel"></div>
165
- </div>
166
- </div>
167
- <div class="col-md-5">
168
- <div class="options-panel">
169
- {%- if pageData.optionPanelTitle -%}
170
- <div class="title">{{pageData.optionPanelTitle}}</div>
171
- {%- endif -%} {{content}}
172
- </div>
173
- </div>
174
- </div>
175
- {%- else -%} {{content}} {%- endif -%}
176
- </div>
177
118
  {%- endif -%}
178
119
  </div>
179
120
  </div>
@@ -198,10 +139,10 @@
198
139
  {%- endif -%} {%- endif -%} {%- if page.layout == "batch" -%}
199
140
  <div class="w-100 line" style="border-top: 1px solid rgb(224, 224, 224)"></div>
200
141
  {%- endif -%}
142
+
201
143
  <div class="container mt-4 mb-5">
202
144
  <div class="row px-0">
203
145
  {%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
204
-
205
146
  <div class="col-md-9 mx-auto">
206
147
  <div class="row">
207
148
  {%- endif -%}
@@ -211,8 +152,6 @@
211
152
  {% assign word_count = words | size %}
212
153
  {% assign totalHeaderCount = totalHeaderCount | plus: word_count %}
213
154
  {% endfor %}
214
-
215
-
216
155
  {% for data in featureData.TEXTUAL_CONTENT %}
217
156
  <div
218
157
  class="{%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4 {%- endif -%}">
@@ -233,14 +172,6 @@
233
172
  </div>
234
173
  </div>
235
174
  {% endfor %}
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
175
  {%- if site.monumetricId and page.url != '/' and
245
176
  page.lang == 'en' -%}
246
177
  </div>
@@ -252,7 +183,6 @@
252
183
  <div class="container">
253
184
  <div class="row">
254
185
  {%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%}
255
-
256
186
  <div class="col-md-9 mx-auto">
257
187
  <div class="row">
258
188
  {%- endif -%}
@@ -311,6 +241,8 @@
311
241
  </div>
312
242
  </div>
313
243
  </section>
244
+
245
+
314
246
  {%- if page.layout == "feature" -%} {%- include bookmark.html -%} {%- endif
315
247
  -%} {%- assign showFaqs= true -%} {%- for item in site.noFaqsList -%} {%- if
316
248
  item == page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else
@@ -345,12 +277,10 @@
345
277
  </div>
346
278
  </div>
347
279
  </section>
348
- {%- endif -%} {%- endif -%} {%- include share/socialshare.html -%}
349
- {%- include Rating/rating.html -%}
350
- {%- if featureData.infographics.size > 0 -%}
280
+ {%- endif -%} {%- endif -%} {%- include share/socialshare.html -%} {%-
281
+ include Rating/rating.html -%} {%- if featureData.infographics.size > 0 -%}
351
282
  {%- include infographics/infographics.html -%}
352
- {%- endif -%}
353
- {%- include /Usp/usp.html -%} {%- if
283
+ {%- endif -%} {%- include /Usp/usp.html -%} {%- if
354
284
  featureData.display_formats -%}
355
285
  <div class="container compare-table">
356
286
  {%- include fileformat/fileformatdetail.html -%}
@@ -359,39 +289,22 @@
359
289
  <div class="container file-detail-table">
360
290
  {%- include fileformat/comparisonfiles.html -%}
361
291
  </div>
362
-
363
-
364
- {%- endif -%}
365
- {%- assign langen = "en" -%}
366
- {%- if site.data[folder][langen][file].categories -%}
367
- {% assign categories= site.data[folder][langen][file].categories %}
368
- {%- else -%}
369
- {% assign categories= page.categories %}
370
- {%- endif -%}
371
- {%- if site.data[folder][langen][file].tags -%}
372
- {% assign tags= site.data[folder][langen][file].tags %}
373
- {%- else -%}
374
- {% assign tags= page.tags %}
375
- {%- endif -%}
376
- {%- if categories.size> 0 or tags.size>0-%}
377
- {%- include section/related_categories_post.html -%}
378
- {%- else -%}
379
- {%- include section/recent_posts.html -%}
380
- {% endif %}
381
- {%- if site.customblogdata -%}
382
- {%- if categories.size> 0 or tags.size>0-%}
383
- {%- include customblog/relatedposts.html -%}
384
- {%- else -%}
385
- {%- include customblog/recentposts.html -%}
386
- {% endif %}
387
- {%- endif -%}
388
-
389
-
292
+ {%- endif -%} {%- assign langen = "en" -%} {%- if
293
+ site.data[folder][langen][file].categories -%} {% assign categories=
294
+ site.data[folder][langen][file].categories %} {%- else -%} {% assign
295
+ categories= page.categories %} {%- endif -%} {%- if
296
+ site.data[folder][langen][file].tags -%} {% assign tags=
297
+ site.data[folder][langen][file].tags %} {%- else -%} {% assign tags=
298
+ page.tags %} {%- endif -%} {%- if categories.size> 0 or tags.size>0-%} {%-
299
+ include section/related_categories_post.html -%} {%- else -%} {%- include
300
+ section/recent_posts.html -%} {% endif %} {%- if site.customblogdata -%} {%-
301
+ if categories.size> 0 or tags.size>0-%} {%- include
302
+ customblog/relatedposts.html -%} {%- else -%} {%- include
303
+ customblog/recentposts.html -%} {% endif %} {%- endif -%}
390
304
  {%- if featureData.author.size > 0 -%}
391
305
  {% include featurePageAuthors/featurePageAuthors.html %}
392
- {%- endif -%}
393
- {% include footer/index.html %} {% include script.html %}
394
-
306
+ {%- endif -%} {% include
307
+ footer/index.html %} {% include script.html %}
395
308
  </body>
396
309
 
397
310
  </html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms