appscms-tools-theme 5.4.4 → 5.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8125b3c47f64a7d9c5805bbdf654d48ec6baf1a36216e1d79774c468e708c18
4
- data.tar.gz: e52f114d5bfafff3bb2ae66d72584dcd5da2749b93c73b0088047692cf0560c1
3
+ metadata.gz: fb698ee81ccaa29c7b1b38f2d17bb5ed0d0731271193165bde903eb04d2a16ca
4
+ data.tar.gz: 6f3db0a1424d14f9e1c38cb28b388b07141cad464433cd2e32d561fb153b1fd8
5
5
  SHA512:
6
- metadata.gz: 45d5572d9ddcf243dba503d67050ce392fe86bd002fdc758523671d292d868050cc15e11230b11b515f6ba2b4a5bc18b6f188a96fc1698ef4dc70da84e3765f2
7
- data.tar.gz: 261652c029df67441e47a57c53786401f2815bef28c2b0ac619e013c58426620eb1bc45e0994d39940429eb7f99668788b233113e23c5d236b2a44b4acc10c2d
6
+ metadata.gz: 757ddc6a90c15a0a572fe452439da4ffb51a91392b60a1c8f81502fe67c0ab9318e3e5af410a94368b0a14f046e25efd40423151f30261b8ab92441112776c9e
7
+ data.tar.gz: 1e5f842018e9ce50988d61e2750561bcd89b26aa35c3869c54a7ef972309a38ab9a70a4269e0c37f0edb89871b422213f107ebd44af8cd220aba4aa8f7c7e866
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 %}
@@ -1,3 +1,4 @@
1
+ <div id="top-adsense-slot" style="width:100%;margin:16px 0;"></div>
1
2
  {%- if page.layout == "appscms-audio" or page.layout == "appscms-video" -%} {%-
2
3
  else -%}
3
4
  <div class="container heading">
@@ -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 -%} {%- if site.search -%} {%- include
102
- appscms/searchbar/searchbar.html -%} {%- endif -%} {%- if homeData.features
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 -%} {% include footer/index.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
data/assets/css/tools.css CHANGED
@@ -571,7 +571,10 @@ ul li {
571
571
  flex-direction: column;
572
572
  }
573
573
  }
574
-
574
+ .footer-logo{
575
+ height: 50px;
576
+ width: 50px;
577
+ }
575
578
  .footer-logo-cont {
576
579
  flex: 1 1 auto;
577
580
  display: flex;
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
4
+ version: 5.4.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: 2026-06-22 00:00:00.000000000 Z
11
+ date: 2026-06-27 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.7
716
+ rubygems_version: 3.3.26
717
717
  signing_key:
718
718
  specification_version: 4
719
719
  summary: Appscms theme for all tools