appscms-tools-theme 5.4.3 → 5.4.4

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: 23467949a8bd6cd7cc7d99dd0e0998cebde90af7fa509e5018c5deb4a2eb9698
4
- data.tar.gz: da1ffd4e858c9711e4084ebe6999cd54b4ad49a6045eab29e624de8cfb5e4e87
3
+ metadata.gz: b8125b3c47f64a7d9c5805bbdf654d48ec6baf1a36216e1d79774c468e708c18
4
+ data.tar.gz: e52f114d5bfafff3bb2ae66d72584dcd5da2749b93c73b0088047692cf0560c1
5
5
  SHA512:
6
- metadata.gz: 782197a52618a0e4e15e8ebe221e939032413db10355dc673e40a8aea3cc682e81b703864dc95dc3dd3e824275d97598ad2c2d2eec37d056c1b50ccf0679099c
7
- data.tar.gz: 244b5fa398d787ee563204f20daa89ade4db4dcc1b988c435e8bf005a1a0c14b5e7bd62894ce88955bb456ae575472942dddbc27e74d77228865413fdd1ffe58
6
+ metadata.gz: 45d5572d9ddcf243dba503d67050ce392fe86bd002fdc758523671d292d868050cc15e11230b11b515f6ba2b4a5bc18b6f188a96fc1698ef4dc70da84e3765f2
7
+ data.tar.gz: 261652c029df67441e47a57c53786401f2815bef28c2b0ac619e013c58426620eb1bc45e0994d39940429eb7f99668788b233113e23c5d236b2a44b4acc10c2d
@@ -71,6 +71,10 @@
71
71
  ]
72
72
  },
73
73
  "FAQ": [
74
+ {
75
+ "question": "Can I also find 5-letter words with these letters?",
76
+ "answer": "Yes. Apply filters to get the list, or you can visit our https://wordswithletters.org/five-letter-words-with-these-letters"
77
+ },
74
78
  {
75
79
  "question": "Can I also find words using 3 blanks instead of 2?\n",
76
80
  "answer": "Yes! You can use 3 blanks or simply visit <a href=\"<a href=\"https://wordswithletters.org/words-with-these-letters-and-3-blanks\" target=\"_blank\" rel=\"noopener noreferrer\">https://wordswithletters.org/words-with-these-letters-and-3-blanks</a>\" target=\"_blank\" rel=\"noopener noreferrer\"><a href=\"https://wordswithletters.org/words-with-these-letters-and-3-blanks\" target=\"_blank\" rel=\"noopener noreferrer\">https://wordswithletters.org/words-with-these-letters-and-3-blanks</a></a>. \n"
data/_includes/.DS_Store CHANGED
Binary file
@@ -0,0 +1,47 @@
1
+ <style>
2
+ .appscms-left-sidebar {
3
+ position: fixed;
4
+ /* border: 2px solid red; */
5
+ width: 200px;
6
+ top: 180px;
7
+ left: 20px;
8
+ height: 100vh;
9
+ z-index: 9999;
10
+ }
11
+
12
+ .appscms-right-sidebar {
13
+ right: 20px;
14
+ position: fixed;
15
+ /* border: 2px solid red; */
16
+ width: 200px;
17
+ top: 180px;
18
+ height: 100vh;
19
+ z-index: 9999;
20
+ }
21
+
22
+ @media (max-width: 768px) {
23
+
24
+ .appscms-left-sidebar,
25
+ .appscms-right-sidebar {
26
+ display: none;
27
+ }
28
+ }
29
+ </style>
30
+
31
+ <!-- Left Ad -->
32
+ <div class="appscms-left-sidebar">
33
+ <ins class="adsbygoogle" style="display:block" data-ad-client="{{site.clientid}}" data-ad-slot="6398009079"
34
+ data-ad-format="auto" data-full-width-responsive="true"></ins>
35
+ <script>
36
+ (adsbygoogle = window.adsbygoogle || []).push({});
37
+ </script>
38
+ </div>
39
+
40
+ <!-- Right Ad -->
41
+ <div class="appscms-right-sidebar">
42
+ <ins class="adsbygoogle" style="display:block" data-ad-client="{{site.clientid}}" data-ad-slot="6398009079"
43
+ data-ad-format="auto" data-full-width-responsive="true"></ins>
44
+ <script>
45
+ (adsbygoogle = window.adsbygoogle || []).push({});
46
+ </script>
47
+ </div>
@@ -4,37 +4,45 @@
4
4
  {%- assign showFaqs= true -%} {%- for item in site.noFaqsList -%} {%- if item ==
5
5
  page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else -%} {%-
6
6
  assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if showFaqs == true
7
- -%}
7
+ -%}
8
8
  {%- if pageData.FAQ.size>0 -%}
9
9
  <div class="container heading mt-5">
10
- <div class="d-flex align-items-center justify-content-center">
11
- <hr
12
- class="flex-grow-1 mx-4 mb-0"
13
- style="height: 2px; background-color: #000"
14
- />
15
- <p class="appscms-h3 my-4 text-center">
16
- {{pageData.faqheading | default: 'Frequently Asked Questions'}}
17
- </p>
18
- <hr
19
- class="flex-grow-1 mx-4 mb-0"
20
- style="height: 2px; background-color: #000"
21
- />
22
- </div>
10
+ <div class="d-flex align-items-center justify-content-center">
11
+ <hr class="flex-grow-1 mx-4 mb-0" style="height: 2px; background-color: #000" />
12
+ <p class="appscms-h3 my-4 text-center">
13
+ {{pageData.faqheading | default: 'Frequently Asked Questions'}}
14
+ </p>
15
+ <hr class="flex-grow-1 mx-4 mb-0" style="height: 2px; background-color: #000" />
16
+ </div>
23
17
  </div>
24
18
  <div class="container mx-auto appscms-faq-section col-md-9 p-3 pb-3 col-12">
25
- {% for data in pageData.FAQ %}
19
+ {% for data in pageData.FAQ %}
26
20
  <div class="faq-item">
27
21
  <h3 class="faq-question">
28
22
  {{ data.question | replace: "$variable", page.value }}
29
23
  </h3>
30
- <p class="faq-answer">
31
- {% assign final_answer = data.answer | replace: "$variable", page.value %}
32
- {% if final_answer contains "<a" %} {{ final_answer }} {% else %} {{ final_answer | auto_link }} {% endif %} </p>
24
+ <p class="faq-answer">
25
+ {% assign final_answer = data.answer | replace: "$variable", page.value %}
26
+
27
+ {% if final_answer contains "<a" %}
28
+ {% comment %} Extract the real URL between the first http and the first quote/space/> after it {% endcomment %}
29
+ {% assign after_http = final_answer | split: "http" | last %}
30
+ {% assign url_part = after_http | split: '"' | first %}
31
+ {% assign clean_url = "http" | append: url_part %}
32
+
33
+ {% comment %} Get the text before the broken tag starts {% endcomment %}
34
+ {% assign before_tag = final_answer | split: "<a" | first %}
35
+
36
+ {{ before_tag }}<a href="{{ clean_url }}" target="_blank" rel="noopener noreferrer">{{ clean_url }}</a>.
37
+ {% else %}
38
+ {{ final_answer | auto_link }}
39
+ {% endif %}
40
+ </p>
33
41
  </div>
34
- {% endfor %}
42
+ {% endfor %}
35
43
 
36
44
  </div>
37
45
  </div>
38
46
  </div>
39
47
 
40
- {%- endif -%} {%- endif -%}
48
+ {%- endif -%} {%- endif -%}
@@ -3,7 +3,7 @@
3
3
  .go-back-block {
4
4
  margin: 0 !important;
5
5
  }
6
-
6
+
7
7
  .action-section {
8
8
  background: linear-gradient(135deg, #667eea 0%, #1b2fe7 100%);
9
9
  border-radius: 4px;
@@ -27,8 +27,13 @@
27
27
  }
28
28
 
29
29
  @keyframes shine {
30
- 0% { left: -100%; }
31
- 100% { left: 100%; }
30
+ 0% {
31
+ left: -100%;
32
+ }
33
+
34
+ 100% {
35
+ left: 100%;
36
+ }
32
37
  }
33
38
 
34
39
  .action-content {
@@ -120,9 +125,13 @@
120
125
  <div class="action-section">
121
126
  <div class="action-content">
122
127
  <div class="action-buttons">
123
- <div class="go-back-block">
124
- <button id="processing-btn" class="action-btn primary-btn">Try processing another file</button>
125
- </div>
128
+
129
+
130
+ <div class="go-back-block">
131
+ <button id="processing-btn">
132
+ <span class="button-loader"></span> Try processing another file
133
+ </button>
134
+ </div>
126
135
 
127
136
 
128
137
  <div class="action-divider">OR</div>
@@ -12,6 +12,12 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
12
12
  data-app-id="{{ site.appId }}"
13
13
  data-dropbox-apikey="{{ site.dropboxapikey }}"
14
14
  >
15
+
16
+
17
+
18
+ {%- include adsense/sidebar-ads.html -%}
19
+
20
+
15
21
  {%- include contenttool_banner.html -%} {%- include
16
22
  appscms/navbars/navbar.html -%} {%- include appscms/navbars/toolbar.html -%}
17
23
  {%- include bookmark.html -%} {%- if site.safeui -%}
@@ -10,6 +10,9 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
10
10
  data-app-id="{{ site.appId }}"
11
11
  data-dropbox-apikey="{{ site.dropboxapikey }}"
12
12
  >
13
+ {%- include adsense/sidebar-ads.html -%}
14
+
15
+
13
16
  {%- include appscms/navbars/navbar.html -%} {%- include
14
17
  appscms/navbars/toolbar.html -%} {%- if homeData.nofileupload -%}
15
18
  <div
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.3
4
+ version: 5.4.4
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-04-30 00:00:00.000000000 Z
11
+ date: 2026-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -174,6 +174,7 @@ files:
174
174
  - _includes/ads/sidebar_left.html
175
175
  - _includes/ads/sidebar_right.html
176
176
  - _includes/adsense/adsense.html
177
+ - _includes/adsense/sidebar-ads.html
177
178
  - _includes/adstera_ads.html
178
179
  - _includes/aitools/instagram-hashtag-generator.html
179
180
  - _includes/alternates/alternates.html