appscms-tools-theme 1.7.2 → 1.7.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: 8f8de475d04a1c5d805c6b5719e1872fe16fbfe8983cf40952ff721536a7dba0
4
- data.tar.gz: 9d0fa8a8ae3f9ecb46abd5b8856e826553f1e0c7f1761b47497dd09cdbc80f25
3
+ metadata.gz: b294c62480e0ce828b43470b06faa1eba6fa01b1368fc242eee49ebfbe92bcba
4
+ data.tar.gz: 45ef10a98e11f8c26c9dd3b3aef7ee3e002fbc1e5a04d59e1036c77207801b2a
5
5
  SHA512:
6
- metadata.gz: ed177e636398d82a2f9430704f000fd95760c684266de83c8885319cce6880599dde21d07d7624272ab22693740b3dd0771f581b27a601a85513a656c2eded72
7
- data.tar.gz: 6a4d173ee86985cb2ad2d596da14fa165558f053f81d7e5eddfa3e9d0e180d434f1ba0422056e01954f069da0de29e892b7620e17494eedcfe96f618feb594a2
6
+ metadata.gz: da88fb1de509d9b3b84f6bc16c76539967489cd253f4d4bd6b59e8b48c6163b8cc5d7e0c1320867d7f59091023375a73a4b82f1c027a76413dfcb26f4b6a6d6f
7
+ data.tar.gz: 7056753beecb2c3d76421794dc2993631bb81d2afd545ae7af2ca49e1090bfa3c30e03038935ca39917ff6a9b28095e0f237c792a24ef17d9451fb7d50ef585d
@@ -11,7 +11,6 @@
11
11
  "nofileupload": true,
12
12
  "rate": "Rate this tool",
13
13
  "votes": "votes",
14
- "variant": "info",
15
14
  "BREADCRUMB_LABEL": "DOCX TO PDF",
16
15
  "color": "purple",
17
16
  "height": "300px",
@@ -10,6 +10,7 @@
10
10
  "imgwidth": "40px",
11
11
  "imgheight": "40px",
12
12
  "imgalt": "altvalue",
13
+ "nofileupload": true,
13
14
  "features": [
14
15
  {
15
16
  "name": "Compress PDF",
@@ -30,4 +30,5 @@
30
30
  endif -%} />
31
31
 
32
32
  {%- include google-analytics.html -%}
33
+ {%- include monumetric/monumetric.html -%}
33
34
  </head>
@@ -153,6 +153,9 @@
153
153
  </div>
154
154
  </div>
155
155
  {%- endif -%}
156
+ {%- if page.nointernationalization -%}
157
+ <div></div>
158
+ {%- else -%}
156
159
  {%- if site.internationalizationall -%}
157
160
  <div class="privacy-links-item">
158
161
  <button type="button" class="drop-down-btn" data-toggle="modal" data-target="#staticBackdrop">
@@ -234,6 +237,8 @@
234
237
  </div>
235
238
  </div>
236
239
  {%- endif -%}
240
+ {%- endif -%}
241
+
237
242
 
238
243
  </div>
239
244
  </div>
@@ -1,132 +1,158 @@
1
- <head>
2
- {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
3
- dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
4
- dataArr %} {% assign title = dataToShow.TITLE | replace:"$variable",
5
- page.value | default:page.title | default: site.title %} {% assign description
6
- = dataToShow.META | replace:"$variable", page.value | default: page.description | default:
7
- site.description %} {% assign keywords = dataToShow.keywords %} {% assign
8
- favicon = site.favicon %}
9
- <meta charset="utf-8" />
10
- <link rel="shortcut icon" href="{{favicon}}" />
11
- <meta name="viewport" content="width=device-width" />
12
- <title>{{title}}</title>
13
- {%- if dataToShow.keywords -%}
14
- <meta name="keywords" content="{{keywords}}" />
15
- {%- endif -%}
16
- <meta name="description" content="{{description}}" />
17
- <link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
18
- <link rel="canonical" href="{{site.url | append: page.url}}" />
19
-
20
- {%- if dataToShow.css -%}
21
- <link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
22
- {%- else -%}
23
- <link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
24
- {%- endif -%}
25
- <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
26
- <meta property="og:title" content="{{title}}" />
27
- <meta property="og:description" content="{{description}}" />
28
- <meta property="og:type" content="website" />
29
- <meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}" />
30
- <meta data-rh="true" property="og:site_name" content="{{site.name}}" />
31
- <meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
32
- <meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}" />
33
- <meta data-rh="true" name="twitter:title" content="{{title}}" />
34
- <meta data-rh="true" name="twitter:description" content="{{description}}" />
35
- <meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}" />
36
- {% include adsense/adsense.html %} {%- if page.noindex -%}
37
- <meta name="robots" content="noindex" />
38
- {%- endif -%} {%- if site.pwa -%}
39
- <link rel="manifest" href="/assets/js/manifest.json" />
40
- {%- endif -%}
41
- {%- if site.internationalization -%}
42
- {%- include alternates/alternates.html -%}
43
- {%- endif -%}
44
- {% include cssfile/links.html %}
45
- <script type="application/ld+json">
46
- {
47
- "@context": "http://schema.org",
48
- "@type": "Organization",
49
- "url": "{{site.siteurl}}",
50
- "logo": "{{site.siteurl}}{{site.logo}}"
51
- }
52
- </script>
53
- <script type="application/ld+json">
54
- {
55
- "@context": "http://schema.org",
56
- "@type": "WebSite",
57
- "name": "{{site.name}}",
58
- "alternateName": "{{site.alternateName}}",
59
- "url": "{{site.siteurl}}"
60
- }
61
- </script>
62
- {%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
63
- != '' -%}
64
- <script type="application/ld+json">
65
- {
66
- "@context": "http://schema.org",
67
- "@type": "HowTo",
68
- "name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
69
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
70
- "step": [
71
- {%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
72
- {%- if forloop.last == true -%}
73
- { "@type": "HowToStep",
74
- "text": "{{item | replace:'"', "'" }}",
75
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
76
- "url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
77
- }
78
- {%- else -%}
79
- { "@type": "HowToStep",
80
- "text": "{{item | replace:'"', "'" }}",
81
- "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
82
- "url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
83
- },
84
- {%- endif -%}
85
- {%- endfor -%}
86
- ]
87
- }
88
- </script>
89
- {%- endif -%} {%- endif -%} {%- if dataToShow.FAQ -%} {%- if
90
- dataToShow.FAQ.first.question !='' -%}
91
- <script type="application/ld+json">
92
- {
93
- "@context": "http://schema.org",
94
- "@type": "FAQPage",
95
- "mainEntity": [
96
- {%- for item in dataToShow.FAQ-%}
97
- {%- if forloop.last == true -%}
98
- {"@type": "Question",
99
- "name": "{{item.question | replace:'"', "'" }}",
100
- "acceptedAnswer": {
101
- "@type": "Answer",
102
- "text": "{{item.answer | replace:'"', "'" }}"
103
- }
104
- }
105
- {%- else -%}
106
- {"@type": "Question",
107
- "name": "{{item.question | replace:'"', "'" }}",
108
- "acceptedAnswer": {
109
- "@type": "Answer",
110
- "text": "{{item.answer | replace:'"', "'" }}"
111
- }
112
- },
113
- {%- endif -%}
114
- {%- endfor -%}
115
- ]
116
- }
117
- </script>
118
- {%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
119
- Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
120
- -%} {%- if site.pwa -%}
121
- <script>
122
- if ('serviceWorker' in navigator) {
123
- window.addEventListener('load', () => {
124
- navigator.serviceWorker
125
- .register('/serviceworker.js')
126
- .then((reg) => console.log('Success: ', reg.scope))
127
- .catch((err) => console.log('Failure: ', err))
128
- })
129
- }
130
- </script>
131
- {%- endif -%}
1
+ <head>
2
+ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign
3
+ dataArr = site.data.[page.folderName][lang][file] %} {% assign dataToShow =
4
+ dataArr %} {% assign title = dataToShow.TITLE | replace:"$variable",
5
+ page.value | default:page.title | default: site.title %} {% assign description
6
+ = dataToShow.META | replace:"$variable", page.value | default: page.description | default:
7
+ site.description %} {% assign keywords = dataToShow.keywords %} {% assign
8
+ favicon = site.favicon %}
9
+ <meta charset="utf-8" />
10
+ <link rel="shortcut icon" href="{{favicon}}" />
11
+ <meta name="viewport" content="width=device-width" />
12
+ {%- if page.layout == "aboutUs" -%}
13
+ <title>{{site.name}} - About us | {{site.title}}</title>
14
+ {% elsif page.layout == "termAndCondition" %}
15
+ <title>{{site.name}} - Terms and conditions | {{site.title}}</title>
16
+ {% elsif page.layout == "disclaimer" %}
17
+ <title>{{site.name}} - Disclaimer | {{site.title}}</title>
18
+ {% elsif page.layout == "privacyPolicy" %}
19
+ <title>{{site.name}} - Privacy policy | {{site.title}}</title>
20
+ {% elsif page.layout == "contactUs" %}
21
+ <title>{{site.name}} - Contact | {{site.title}}</title>
22
+ {% elsif page.layout == "help" %}
23
+ <title>{{site.name}} - Help | {{site.title}}</title>
24
+ {%- else -%}
25
+ <title>{{title}}</title>
26
+ {%- endif -%}
27
+ {%- if dataToShow.keywords -%}
28
+ <meta name="keywords" content="{{keywords}}" />
29
+ {%- endif -%}
30
+ {%- if page.layout == "aboutUs" -%}
31
+ <meta name="description" content="{{site.name}} - About us | {{description}}" />
32
+ {% elsif page.layout == "termAndCondition" %}
33
+ <meta name="description" content="{{site.name}} - Terms and conditions | {{description}}" />
34
+ {% elsif page.layout == "disclaimer" %}
35
+ <meta name="description" content="{{site.name}} - Disclaimer | {{description}}" />
36
+ {% elsif page.layout == "privacyPolicy" %}
37
+ <meta name="description" content="{{site.name}} - Privacy policy | {{description}}" />
38
+ {% elsif page.layout == "contactUs" %}
39
+ <meta name="description" content="{{site.name}} - Contact | {{description}}" />
40
+ {%- else -%}
41
+ <meta name="description" content="{{description}}" />
42
+ {%- endif -%}
43
+ <link rel="stylesheet" href="/assets/css/bootstrap.min.css" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
44
+ <link rel="canonical" href="{{site.url | append: page.url}}" />
45
+ {%- if dataToShow.css -%}
46
+ <link rel="stylesheet" href="{{dataToShow.css}}" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
47
+ {%- else -%}
48
+ <link rel="stylesheet" href="/assets/css/tools.css" {%- if site.crossorigin -%} crossorigin {%- endif -%} />
49
+ {%- endif -%}
50
+ <meta data-rh="true" property="og:image" content="{{site.url}}{{favicon}}" />
51
+ <meta property="og:title" content="{{title}}" />
52
+ <meta property="og:description" content="{{description}}" />
53
+ <meta property="og:type" content="website" />
54
+ <meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}" />
55
+ <meta data-rh="true" property="og:site_name" content="{{site.name}}" />
56
+ <meta data-rh="true" property="twitter:domain" content="{{site.url}}" />
57
+ <meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}" />
58
+ <meta data-rh="true" name="twitter:title" content="{{title}}" />
59
+ <meta data-rh="true" name="twitter:description" content="{{description}}" />
60
+ <meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}" />
61
+ {% include adsense/adsense.html %} {%- if page.noindex -%}
62
+ <meta name="robots" content="noindex" />
63
+ {%- endif -%} {%- if site.pwa -%}
64
+ <link rel="manifest" href="/assets/js/manifest.json" />
65
+ {%- endif -%}
66
+ {%- if site.internationalization -%}
67
+ {%- include alternates/alternates.html -%}
68
+ {%- endif -%}
69
+ {% include cssfile/links.html %}
70
+ <script type="application/ld+json">
71
+ {
72
+ "@context": "http://schema.org",
73
+ "@type": "Organization",
74
+ "url": "{{site.siteurl}}",
75
+ "logo": "{{site.siteurl}}{{site.logo}}"
76
+ }
77
+ </script>
78
+ <script type="application/ld+json">
79
+ {
80
+ "@context": "http://schema.org",
81
+ "@type": "WebSite",
82
+ "name": "{{site.name}}",
83
+ "alternateName": "{{site.alternateName}}",
84
+ "url": "{{site.siteurl}}"
85
+ }
86
+ </script>
87
+ {%- if dataToShow.HOW_TO_CONTENT -%} {%- if dataToShow.HOW_TO_CONTENT.heading
88
+ != '' -%}
89
+ <script type="application/ld+json">
90
+ {
91
+ "@context": "http://schema.org",
92
+ "@type": "HowTo",
93
+ "name": "{{dataToShow.HOW_TO_CONTENT.heading | replace:'"', "'" }}",
94
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
95
+ "step": [
96
+ {%- for item in dataToShow.HOW_TO_CONTENT.steps-%}
97
+ {%- if forloop.last == true -%}
98
+ { "@type": "HowToStep",
99
+ "text": "{{item | replace:'"', "'" }}",
100
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
101
+ "url": "{{site.url | append: page.url}}#step{{ forloop.index }}"
102
+ }
103
+ {%- else -%}
104
+ { "@type": "HowToStep",
105
+ "text": "{{item | replace:'"', "'" }}",
106
+ "image": "{{site.siteurl}}{{dataToShow.HOW_TO_CONTENT.logoImageUrl}}",
107
+ "url": "{{site.url | append: page.url}}#step{{ forloop.index}}"
108
+ },
109
+ {%- endif -%}
110
+ {%- endfor -%}
111
+ ]
112
+ }
113
+ </script>
114
+ {%- endif -%} {%- endif -%} {%- if dataToShow.FAQ -%} {%- if
115
+ dataToShow.FAQ.first.question !='' -%}
116
+ <script type="application/ld+json">
117
+ {
118
+ "@context": "http://schema.org",
119
+ "@type": "FAQPage",
120
+ "mainEntity": [
121
+ {%- for item in dataToShow.FAQ-%}
122
+ {%- if forloop.last == true -%}
123
+ {"@type": "Question",
124
+ "name": "{{item.question | replace:'"', "'" }}",
125
+ "acceptedAnswer": {
126
+ "@type": "Answer",
127
+ "text": "{{item.answer | replace:'"', "'" }}"
128
+ }
129
+ }
130
+ {%- else -%}
131
+ {"@type": "Question",
132
+ "name": "{{item.question | replace:'"', "'" }}",
133
+ "acceptedAnswer": {
134
+ "@type": "Answer",
135
+ "text": "{{item.answer | replace:'"', "'" }}"
136
+ }
137
+ },
138
+ {%- endif -%}
139
+ {%- endfor -%}
140
+ ]
141
+ }
142
+ </script>
143
+ {%- endif -%} {%- endif -%} {%- if page.tool -%} {%- include
144
+ Rating/structureddata.html -%} {%- endif -%} {%- include google-analytics.html
145
+ -%} {%- if site.pwa -%}
146
+ <script>
147
+ if ('serviceWorker' in navigator) {
148
+ window.addEventListener('load', () => {
149
+ navigator.serviceWorker
150
+ .register('/serviceworker.js')
151
+ .then((reg) => console.log('Success: ', reg.scope))
152
+ .catch((err) => console.log('Failure: ', err))
153
+ })
154
+ }
155
+ </script>
156
+ {%- endif -%}
157
+ {%- include monumetric/monumetric.html -%}
132
158
  </head>
@@ -0,0 +1,61 @@
1
+ {% if jekyll.environment == 'production' and site.monumetricId %}
2
+ <script>
3
+ const autoLoadDuration = 5; //In Seconds
4
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
5
+
6
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
7
+
8
+ eventList.forEach(function (event) {
9
+ window.addEventListener(event, triggerScripts, { passive: true })
10
+ });
11
+
12
+ function triggerScripts() {
13
+ runScripts();
14
+ clearTimeout(autoLoadTimeout);
15
+ eventList.forEach(function (event) {
16
+ window.removeEventListener(event, triggerScripts, { passive: true });
17
+ });
18
+ }
19
+
20
+ function runScripts() {
21
+ console.log(document.querySelector("script"))
22
+ console.log("Javascript Executed!")
23
+ console.log(document.querySelectorAll("script[delay]"))
24
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
25
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
26
+ });
27
+ }
28
+ </script>
29
+ <script type="text/javascript" defer delay="{{site.monumetricId}}" data-cfasync="false"></script>
30
+ {% endif %}
31
+
32
+ {% if jekyll.environment == 'development' and site.monumetricId %}
33
+ <script>
34
+ const autoLoadDuration = 5; //In Seconds
35
+ const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
36
+
37
+ const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
38
+
39
+ eventList.forEach(function (event) {
40
+ window.addEventListener(event, triggerScripts, { passive: true })
41
+ });
42
+
43
+ function triggerScripts() {
44
+ runScripts();
45
+ clearTimeout(autoLoadTimeout);
46
+ eventList.forEach(function (event) {
47
+ window.removeEventListener(event, triggerScripts, { passive: true });
48
+ });
49
+ }
50
+
51
+ function runScripts() {
52
+ console.log(document.querySelector("script"))
53
+ console.log("Javascript Executed!")
54
+ console.log(document.querySelectorAll("script[delay]"))
55
+ document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
56
+ scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
57
+ });
58
+ }
59
+ </script>
60
+ <script type="text/javascript" delay="{{site.monumetricId}}"></script>
61
+ {% endif %}
@@ -0,0 +1,56 @@
1
+ {% assign lang = page.lang %}
2
+ {% assign dataToShow = site.data.footer[lang].data %}
3
+ {%- assign networksitesData = site.data.footer.networksites -%}
4
+ {%- include languages/languages.html -%}
5
+ {% assign dataFile= site.data[folder][lang][file] %}
6
+ <footer class="footer">
7
+ <div class="container">
8
+ <div class="footer-wrapper">
9
+ {%- if dataToShow.logo -%}
10
+ <div class="footer-logo-cont"><img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo"
11
+ {%- if site.crossorigin -%} crossorigin {%- endif -%}>
12
+ <div class="footer-title">{{dataToShow.heading}}</div>
13
+ </div>
14
+ {%- endif -%}
15
+ <nav class="footer-nav">
16
+ <ul class="footer-ul">
17
+ <h2 class="footer-ul-title">{{dataToShow.companytitle | default: 'Company' }}</h2>
18
+ {% for data in dataToShow.company %}
19
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
20
+ {% endfor %}
21
+ </ul>
22
+ <ul class="footer-ul">
23
+ <h2 class="footer-ul-title">{{dataToShow.producttitle | default: 'Product' }}</h2>
24
+ {% for data in dataToShow.product %}
25
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
26
+ {% endfor %}
27
+ </ul>
28
+ <ul class="footer-ul">
29
+ <h2 class="footer-ul-title">{{dataToShow.networksitestitle | default: 'Network sites'}}</h2>
30
+ {% for data in networksitesData.networkSites %}
31
+ <a class="footer-link" href="{{data.url}}">{{data.name}}</a>
32
+ {% endfor %}
33
+ </ul>
34
+ </nav>
35
+ </div>
36
+ <div class="jKLUgT"></div>
37
+ <div class="d-flex py-4">
38
+ {% for data in dataToShow.social %}
39
+ <a class="cVpsCJ px-3" target="_blank" rel="noopener noreferrer" href="{{data.url}}" title="LinkedIn">
40
+ <div class="sDfHB" style="width:24px;height:24px">
41
+ <img loading="lazy" src="{{data.logo}}" title="{{data.title}}" {%- if site.crossorigin -%}
42
+ crossorigin {%- endif -%}>
43
+ </div>
44
+ </a>
45
+ {% endfor %}
46
+ </div>
47
+ <div class="privacy-footer">
48
+ <div class="footer-msg">{{dataToShow.messege}}
49
+ </div>
50
+ <div class="privacy-links">
51
+ {% for data in dataToShow.legal %}
52
+ <div class="privacy-links-item"><a href="{{data.url}}">{{data.name}}</a></div>
53
+ {% endfor %}
54
+ </div>
55
+ </div>
56
+ </footer>
@@ -18,7 +18,7 @@
18
18
  {{content}}
19
19
  </div>
20
20
  </div>
21
- {% include footer/staticfooter.html %}
21
+ {% include staticfooter.html %}
22
22
  {% include script.html %}
23
23
  </body>
24
24
 
@@ -72,7 +72,7 @@
72
72
  <div>
73
73
  </div>
74
74
  </div>
75
- {% include footer/staticfooter.html %}
75
+ {% include staticfooter.html %}
76
76
  {% include script.html %}
77
77
  </body>
78
78
 
@@ -72,7 +72,7 @@
72
72
  {{content}}
73
73
  </div>
74
74
  </div>
75
- {% include footer/staticfooter.html %}
75
+ {% include staticfooter.html %}
76
76
  {% include script.html %}
77
77
  </body>
78
78
 
@@ -13,18 +13,20 @@
13
13
  {%- if site.safeui -%}
14
14
  <div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
15
15
  role="alert">
16
- <img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if site.crossorigin -%} crossorigin
17
- {%- endif -%}> &nbsp;
18
- {%- if featureData.alertmsg -%}
19
- {{featureData.alertmsg}}
20
- {%- else -%}
21
- We do not upload any files to server, hence your data is 100% secure.
22
- {%- endif -%} &nbsp;
23
- <img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload" {%- if site.crossorigin
24
- -%} crossorigin {%- endif -%}>
25
- <button type="button" class="close" data-dismiss="alert" aria-label="Close">
26
- <span aria-hidden="true">&times;</span>
27
- </button>
16
+ <div class="container">
17
+ <img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if site.crossorigin -%}
18
+ crossorigin {%- endif -%}> &nbsp;
19
+ {%- if featureData.alertmsg -%}
20
+ {{featureData.alertmsg}}
21
+ {%- else -%}
22
+ We do not upload any files to server, hence your data is 100% secure.
23
+ {%- endif -%} &nbsp;
24
+ <img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload" {%- if
25
+ site.crossorigin -%} crossorigin {%- endif -%}>
26
+ <button type="button" class="close" data-dismiss="alert" aria-label="Close">
27
+ <span aria-hidden="true">&times;</span>
28
+ </button>
29
+ </div>
28
30
  </div>
29
31
  {%- endif -%}
30
32
  <div class="flex-container pb-3">
@@ -105,15 +107,23 @@
105
107
  </div>
106
108
  </div>
107
109
  </div>
108
-
110
+ {%- assign showFaqs= true -%}
111
+ {%- for item in site.noFaqsList -%}
112
+ {%- if item == page.lang -%}
113
+ {%- assign showFaqs = false -%}
114
+ {%- break -%}
115
+ {%- else -%}
116
+ {%- assign showFaqs = true -%}
117
+ {%- endif -%}
118
+ {%- endfor -%}
119
+ {%- if showFaqs == true -%}
120
+ {%- if featureData.FAQ.size>0 -%}
109
121
  <div class="container">
110
122
  <div class="row">
111
123
  <div class="col-md-8 mx-auto">
112
124
  <div class="faq">
113
- {%- if featureData.FAQ.size>0 -%}
114
125
  <h2 class="feature-h1 text-center">{{featureData.faqheading | default: 'Frequently Asked
115
126
  Questions'}}</h2>
116
- {%- endif -%}
117
127
  <ul class="list-unstyled">
118
128
  {% for data in featureData.FAQ %}
119
129
  <li>
@@ -133,6 +143,8 @@
133
143
  </div>
134
144
  </div>
135
145
  </div>
146
+ {%- endif -%}
147
+ {%- endif -%}
136
148
  {%- include share/socialshare.html -%}
137
149
  {%- include Rating/rating.html -%}
138
150
  {%- include /Usp/usp.html -%}
data/_layouts/help.html CHANGED
@@ -17,7 +17,7 @@
17
17
  {{content}}
18
18
  </div>
19
19
  </div>
20
- {% include footer/staticfooter.html %}
20
+ {% include staticfooter.html %}
21
21
  {% include script.html %}
22
22
  </body>
23
23
 
data/_layouts/home.html CHANGED
@@ -9,20 +9,21 @@
9
9
  <body>
10
10
  {% include header/index.html %}
11
11
  {%- if homeData.nofileupload -%}
12
- <div class="alert alert-{{featureData.variant | default: 'warning'}} alert-dismissible fade show text-center"
12
+ <div class="alert alert-{{homeData.variant | default: 'warning'}} alert-dismissible fade show text-center"
13
13
  role="alert">
14
- <img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if site.crossorigin -%} crossorigin
15
- {%- endif -%}> &nbsp;
16
- {%- if featureData.alertmsg -%}
17
- {{featureData.alertmsg}}
18
- {%- else -%}
19
- We do not upload any files to server, hence your data is 100% secure.
20
- {%- endif -%} &nbsp;
21
- <img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload" {%- if site.crossorigin
22
- -%} crossorigin {%- endif -%}>
23
- <button type="button" class="close" data-dismiss="alert" aria-label="Close">
24
- <span aria-hidden="true">&times;</span>
25
- </button>
14
+ <div class="container"> <img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if
15
+ site.crossorigin -%} crossorigin {%- endif -%}> &nbsp;
16
+ {%- if homeData.alertmsg -%}
17
+ {{homeData.alertmsg}}
18
+ {%- else -%}
19
+ We do not upload any files to server, hence your data is 100% secure.
20
+ {%- endif -%} &nbsp;
21
+ <img src="/assets/noserverupload.svg" height="23px" width="20px" alt="no server upload" {%- if
22
+ site.crossorigin -%} crossorigin {%- endif -%}>
23
+ <button type="button" class="close" data-dismiss="alert" aria-label="Close">
24
+ <span aria-hidden="true">&times;</span>
25
+ </button>
26
+ </div>
26
27
  </div>
27
28
  {%- endif -%}
28
29
  {%- if homeData.h1 or homeData.h2 -%}
@@ -108,6 +109,16 @@
108
109
  </div>
109
110
 
110
111
  {%- endif -%}
112
+ {%- assign showFaqs = true -%}
113
+ {%- for item in site.noFaqsList -%}
114
+ {%- if item == page.lang -%}
115
+ {%- assign showFaqs = false -%}
116
+ {%- break -%}
117
+ {%- else -%}
118
+ {%- assign showFaqs = true -%}
119
+ {%- endif -%}
120
+ {%- endfor -%}
121
+ {%- if showFaqs == true -%}
111
122
  {%- if homeData.FAQ -%}
112
123
  <div class="container">
113
124
  <div class="row">
@@ -138,6 +149,9 @@
138
149
 
139
150
  </div>
140
151
  {%- endif -%}
152
+ {%- endif -%}
153
+
154
+
141
155
  {%- include share/socialshare.html -%}
142
156
  {%- include Rating/rating.html -%}
143
157
  {%- if homeData.USPS -%}
@@ -396,7 +396,7 @@
396
396
  {{content}}
397
397
  </div>
398
398
  </div>
399
- {% include footer/staticfooter.html %}
399
+ {% include staticfooter.html %}
400
400
  {% include script.html %}
401
401
  </body>
402
402
 
@@ -400,7 +400,7 @@
400
400
  {{content}}
401
401
  </div>
402
402
  </div>
403
- {% include footer/staticfooter.html %}
403
+ {% include staticfooter.html %}
404
404
  {% include script.html %}
405
405
  </body>
406
406
 
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: 1.7.2
4
+ version: 1.7.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: 2021-12-11 00:00:00.000000000 Z
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -152,6 +152,7 @@ files:
152
152
  - _includes/header/blogHeader.html
153
153
  - _includes/header/index.html
154
154
  - _includes/languages/languages.html
155
+ - _includes/monumetric/monumetric.html
155
156
  - _includes/nofiletransfer/nofiletransfer.html
156
157
  - _includes/paginationBlogPage.html
157
158
  - _includes/paginationPostPage.html
@@ -163,6 +164,7 @@ files:
163
164
  - _includes/section/recent_posts.html
164
165
  - _includes/section/related_categories_post.html
165
166
  - _includes/share/socialshare.html
167
+ - _includes/staticfooter.html
166
168
  - _layouts/aboutUs.html
167
169
  - _layouts/blog.html
168
170
  - _layouts/categories.html