appscms-tools-theme 5.4.4 → 5.4.5
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/.DS_Store +0 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/adsense/sidebar-ads.html +6 -3
- data/_layouts/appscms-feature.html +2 -2
- data/_layouts/home-1.html +17 -4
- 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: 84a70701ab8fd0c8c8b529539ee267e07f411e44396c5d9ef57bc5b7eebb5b4c
|
|
4
|
+
data.tar.gz: 7973db255d2bbc4dbed5f2fb20efaf311af19c1276a1dae277ab53dc47ac1bb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d768c5991e38529980284e01a9c301facde35e1f24501c4d8621aad3a0527cc8837ff8fecb1504441b8338ccc0f4940c9ae2e90762d30cf4f62d3d93ec7e5b3
|
|
7
|
+
data.tar.gz: fdabc83163c3f610625031370c90ad1a86c3b4d8cdd997dfa772b3adf402f8dcb4fcdbdc85b84862c3d79d927f1fc5b607176a2c824d58e605eaa4024912b1a6
|
data/_data/.DS_Store
CHANGED
|
Binary file
|
data/_includes/.DS_Store
CHANGED
|
Binary file
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
{% if jekyll.environment == 'production' and site.clientid %}
|
|
2
|
+
|
|
1
3
|
<style>
|
|
2
4
|
.appscms-left-sidebar {
|
|
3
5
|
position: fixed;
|
|
@@ -6,7 +8,7 @@
|
|
|
6
8
|
top: 180px;
|
|
7
9
|
left: 20px;
|
|
8
10
|
height: 100vh;
|
|
9
|
-
z-index: 9999;
|
|
11
|
+
/* z-index: 9999; */
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
.appscms-right-sidebar {
|
|
@@ -16,7 +18,7 @@
|
|
|
16
18
|
width: 200px;
|
|
17
19
|
top: 180px;
|
|
18
20
|
height: 100vh;
|
|
19
|
-
z-index: 9999;
|
|
21
|
+
/* z-index: 9999; */
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
@media (max-width: 768px) {
|
|
@@ -44,4 +46,5 @@
|
|
|
44
46
|
<script>
|
|
45
47
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
46
48
|
</script>
|
|
47
|
-
</div>
|
|
49
|
+
</div>
|
|
50
|
+
{% endif %}
|
|
@@ -77,8 +77,8 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
77
77
|
</script>
|
|
78
78
|
|
|
79
79
|
{%- include appscms/headings/headings.html -%}
|
|
80
|
-
<div class="appscms-sidebar-left"></div>
|
|
81
|
-
<div class="appscms-sidebar-right"></div>
|
|
80
|
+
<!-- <div class="appscms-sidebar-left"></div>
|
|
81
|
+
<div class="appscms-sidebar-right"></div> -->
|
|
82
82
|
|
|
83
83
|
{%- include appscms/uploadbutton/uploadbutton.html -%} {%- include
|
|
84
84
|
appscms/featurehighlight/featurehighlight.html -%} {%- include
|
data/_layouts/home-1.html
CHANGED
|
@@ -98,8 +98,11 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
98
98
|
</h2>
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
|
-
{%- endif -%}
|
|
102
|
-
|
|
101
|
+
{%- endif -%}
|
|
102
|
+
{%- if site.search and page.noSearchBar != true -%}
|
|
103
|
+
{%- include appscms/searchbar/searchbar.html -%}
|
|
104
|
+
{%- endif -%}
|
|
105
|
+
{%- if homeData.features
|
|
103
106
|
-%}
|
|
104
107
|
<div class="container mt-4">
|
|
105
108
|
<div class="row">
|
|
@@ -241,7 +244,7 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
241
244
|
{%- endif -%} {%- assign showFaqs = true -%} {%- for item in site.noFaqsList
|
|
242
245
|
-%} {%- if item == page.lang -%} {%- assign showFaqs = false -%} {%- break
|
|
243
246
|
-%} {%- else -%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%}
|
|
244
|
-
{%- if showFaqs == true -%} {%- if homeData.FAQ -%}
|
|
247
|
+
{%- if showFaqs == true -%} {%- if homeData.FAQ.size > 0 -%}
|
|
245
248
|
<section class="faq-section">
|
|
246
249
|
<div class="container">
|
|
247
250
|
<div class="row">
|
|
@@ -270,7 +273,17 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
270
273
|
{%- endif -%} {%- endif -%}
|
|
271
274
|
|
|
272
275
|
{%- include appscms/reviews/trustpilot.html -%}
|
|
273
|
-
{%- include Rating/rating.html -%}
|
|
276
|
+
{%- include Rating/rating.html -%}
|
|
277
|
+
{%- if pageData.posts.size > 0 -%} {%-
|
|
278
|
+
include appscms/customblog/pageRelatedPosts.html -%} {%- else -%} {%- if
|
|
279
|
+
categories.size > 0 or tags.size > 0 -%} {%- include
|
|
280
|
+
appscms/recent-posts/related_categories_post.html -%} {%- else -%} {%-
|
|
281
|
+
include appscms/recent-posts/recent_posts.html -%} {%- endif -%} {%- endif
|
|
282
|
+
-%} {%- if site.customblogdata -%} {%- if categories.size> 0 or
|
|
283
|
+
tags.size>0-%} {%- include appscms/customblog/relatedposts.html -%} {%- else
|
|
284
|
+
-%} {%- include appscms/customblog/recentposts.html -%} {% endif %} {%-
|
|
285
|
+
endif -%}
|
|
286
|
+
{% include footer/index.html %}
|
|
274
287
|
|
|
275
288
|
|
|
276
289
|
{%- include /ads/banner.html -%}
|
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: 5.4.
|
|
4
|
+
version: 5.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -713,7 +713,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
713
713
|
- !ruby/object:Gem::Version
|
|
714
714
|
version: '0'
|
|
715
715
|
requirements: []
|
|
716
|
-
rubygems_version: 3.3.
|
|
716
|
+
rubygems_version: 3.3.26
|
|
717
717
|
signing_key:
|
|
718
718
|
specification_version: 4
|
|
719
719
|
summary: Appscms theme for all tools
|