appscms-tools-theme 3.7.7 → 3.7.9
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/feature/en/compress-pdf.json +302 -1
- data/_data/header/en/data.json +1 -1
- data/_data/home/en/en.json +346 -1
- data/_includes/appscms/footer/footer.html +1 -1
- data/_includes/appscms/footer/products.html +1 -3
- data/_includes/appscms/head/head.html +432 -591
- data/_includes/appscms/headings/headings.html +15 -18
- data/_includes/appscms/home/feature-boxes.html +9 -7
- data/_includes/appscms/howto/howto.html +2 -3
- data/_layouts/appscms-feature.html +15 -27
- data/_layouts/appscms-home.html +14 -19
- data/assets/css/appscms-theme.css +2 -1
- data/assets/images/logo.svg +3 -0
- metadata +2 -1
|
@@ -1,19 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor
|
|
15
|
-
-%}
|
|
16
|
-
</h2>
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
1
|
+
<div class="container heading">
|
|
2
|
+
<div class="row">
|
|
3
|
+
<div
|
|
4
|
+
class="col-xxl-8 col-lg-9 col-md-12 col-sm-12 offset-md-1 offset-sm-0 py-5 pt-md-5 pt-sm-3 mx-auto"
|
|
5
|
+
>
|
|
6
|
+
<h1 class="text-center appscms-h1">
|
|
7
|
+
{%- for word in pageData.H1 -%} {%- if forloop.first == true -%} {{word
|
|
8
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
9
|
+
</h1>
|
|
10
|
+
<h2 class="text-center appscms-h2">
|
|
11
|
+
{%- for word in pageData.H2 -%} {%- if forloop.first == true -%} {{word
|
|
12
|
+
| capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
13
|
+
</h2>
|
|
19
14
|
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
@@ -4,15 +4,17 @@
|
|
|
4
4
|
<div class="row">
|
|
5
5
|
{% for item in pageData.features %}
|
|
6
6
|
<div class="col-xl-4 col-lg-6 col-md-6 appscms-tool-container">
|
|
7
|
-
<
|
|
8
|
-
<div class="tool
|
|
9
|
-
<div class="tool-
|
|
10
|
-
<
|
|
7
|
+
<a href="{{item.url}}">
|
|
8
|
+
<div class="appscms-tool">
|
|
9
|
+
<div class="tool-top">
|
|
10
|
+
<div class="tool-img">
|
|
11
|
+
<img crossorigin="anonymous" src="{{item.icon}}" alt="img" />
|
|
12
|
+
</div>
|
|
13
|
+
<div class="tool-text">{{item.description}}</div>
|
|
11
14
|
</div>
|
|
12
|
-
<div class="tool-
|
|
15
|
+
<div class="tool-heading">{{item.name}}</div>
|
|
13
16
|
</div>
|
|
14
|
-
|
|
15
|
-
</div>
|
|
17
|
+
</a>
|
|
16
18
|
</div>
|
|
17
19
|
{% endfor %}
|
|
18
20
|
</div>
|
|
@@ -57,11 +57,10 @@
|
|
|
57
57
|
{{pageData.HOW_TO_CONTENT.heading | replace: "$variable",
|
|
58
58
|
page.value}}
|
|
59
59
|
</h2>
|
|
60
|
-
<ol class="
|
|
60
|
+
<ol class="ml-3">
|
|
61
61
|
{% for data in pageData.HOW_TO_CONTENT.steps %}
|
|
62
62
|
<li id="step{{forloop.index}}" class="how-to-list-item">
|
|
63
|
-
|
|
64
|
-
page.value}}
|
|
63
|
+
{{data | replace: "$variable", page.value}}
|
|
65
64
|
</li>
|
|
66
65
|
{% endfor %}
|
|
67
66
|
</ol>
|
|
@@ -1,32 +1,20 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
|
|
4
|
-
{% assign pageData = site.data[folder][lang][file] %}
|
|
5
|
-
{%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
6
|
-
|
|
1
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
|
|
2
|
+
= page.folderName %} {% assign pageData = site.data[folder][lang][file] %} {%-
|
|
3
|
+
assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
7
4
|
|
|
8
5
|
<!DOCTYPE html>
|
|
9
6
|
<html lang="{{ page.lang }}">
|
|
10
|
-
{%- include appscms/head/head.html -%}
|
|
11
|
-
<body>
|
|
12
|
-
{%- include appscms/navbars/navbar.html -%}
|
|
13
|
-
{%- include appscms/
|
|
14
|
-
{%- include appscms/
|
|
15
|
-
|
|
16
|
-
{%- include appscms/
|
|
17
|
-
|
|
18
|
-
{%- include appscms/faq/faq.html -%}
|
|
19
|
-
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
20
|
-
{{ content }}
|
|
21
|
-
</div>
|
|
22
|
-
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
7
|
+
{%- include appscms/head/head.html -%}
|
|
8
|
+
<body>
|
|
9
|
+
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
10
|
+
appscms/navbars/toolbar.html -%} {%- include appscms/headings/headings.html
|
|
11
|
+
-%} {%- include appscms/uploadbutton/uploadbutton.html -%} {%- include
|
|
12
|
+
appscms/featurehighlight/featurehighlight.html -%} {%- include
|
|
13
|
+
appscms/howto/howto.html -%} {%- include appscms/faq/faq.html -%} {%-
|
|
14
|
+
include appscms/recent-posts/recent-posts.html -%}
|
|
23
15
|
<!-- {%- include appscms/extras/traffic-count.html -%} -->
|
|
24
|
-
{%- include appscms/extras/ratings.html -%}
|
|
25
|
-
|
|
26
|
-
{%- include appscms/footer/products.html -%}
|
|
27
|
-
{%- include appscms/footer/footer.html -%}
|
|
28
|
-
|
|
16
|
+
{%- include appscms/extras/ratings.html -%} {%- include
|
|
17
|
+
appscms/footer/products.html -%} {%- include appscms/footer/footer.html -%}
|
|
29
18
|
{%- include appscms/scripts/script.html -%}
|
|
30
|
-
|
|
31
|
-
</
|
|
32
|
-
</html>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
data/_layouts/appscms-home.html
CHANGED
|
@@ -1,27 +1,22 @@
|
|
|
1
|
-
{% assign file = page.fileName %}
|
|
2
|
-
{% assign
|
|
3
|
-
|
|
4
|
-
{% assign pageData = site.data[folder][lang][file] %}
|
|
5
|
-
{%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
1
|
+
{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder
|
|
2
|
+
= page.folderName %} {% assign pageData = site.data[folder][lang][file] %} {%-
|
|
3
|
+
assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
6
4
|
<!DOCTYPE html>
|
|
7
5
|
<html lang="{{ page.lang }}">
|
|
8
|
-
{%- include appscms/head/head.html -%}
|
|
9
|
-
<body>
|
|
6
|
+
{%- include appscms/head/head.html -%}
|
|
7
|
+
<body>
|
|
10
8
|
{%- include appscms/navbars/navbar.html -%}
|
|
11
|
-
{%- include appscms/navbars/toolbar.html -%}
|
|
9
|
+
<!-- {%- include appscms/navbars/toolbar.html -%} -->
|
|
12
10
|
{%- include appscms/headings/headings.html -%}
|
|
13
|
-
{%- include appscms/searchbar/searchbar.html -%}
|
|
14
|
-
{%- include appscms/category-tabs/category-tabs.html -%}
|
|
15
|
-
|
|
11
|
+
<!-- {%- include appscms/searchbar/searchbar.html -%} -->
|
|
12
|
+
{%- include appscms/category-tabs/category-tabs.html -%} {%- include
|
|
13
|
+
appscms/home/feature-boxes.html -%}
|
|
16
14
|
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
17
|
-
|
|
15
|
+
{{ content }}
|
|
18
16
|
</div>
|
|
19
17
|
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
20
18
|
<!-- {%- include appscms/extras/traffic-count.html -%} -->
|
|
21
|
-
{%- include appscms/footer/products.html -%}
|
|
22
|
-
{%- include appscms/
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
</body>
|
|
27
|
-
</html>
|
|
19
|
+
{%- include appscms/footer/products.html -%} {%- include
|
|
20
|
+
appscms/footer/footer.html -%} {%- include appscms/scripts/script.html -%}
|
|
21
|
+
</body>
|
|
22
|
+
</html>
|
|
@@ -395,6 +395,7 @@ body {
|
|
|
395
395
|
.appscms-tool .tool-heading {
|
|
396
396
|
padding-top: 14px;
|
|
397
397
|
padding-bottom: 19px;
|
|
398
|
+
color: var(--dark-gray);
|
|
398
399
|
height: 57px;
|
|
399
400
|
font-weight: 400;
|
|
400
401
|
font-size: 19px;
|
|
@@ -754,7 +755,7 @@ body {
|
|
|
754
755
|
.appscms-footer-link a {
|
|
755
756
|
color: var(--dark-gray);
|
|
756
757
|
display: block;
|
|
757
|
-
margin-top:
|
|
758
|
+
margin-top: 24px;
|
|
758
759
|
font-size: 15px;
|
|
759
760
|
font-weight: 400;
|
|
760
761
|
line-height: 20px;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns='http://www.w3.org/2000/svg' width='123' height='96' viewBox='0 0 123 96' fill='none'>
|
|
2
|
+
<path d='M100.95 23.32C100.95 21.23 102.64 19.54 104.73 19.54C106.82 19.54 108.51 21.23 108.51 23.32V71.82C108.51 73.91 106.82 75.6 104.73 75.6C102.64 75.6 100.95 73.91 100.95 71.82V23.32ZM0 31.82C0 29.73 1.69 28.04 3.78 28.04C5.87 28.04 7.56 29.73 7.56 31.82V63.31C7.56 65.4 5.87 67.09 3.78 67.09C1.69 67.09 0 65.4 0 63.31V31.82ZM14.42 23.32C14.42 21.23 16.11 19.54 18.2 19.54C20.29 19.54 21.98 21.23 21.98 23.32V71.82C21.98 73.91 20.29 75.6 18.2 75.6C16.11 75.6 14.42 73.91 14.42 71.82V23.32ZM28.9 13.9C28.9 11.82 30.57 10.14 32.62 10.14C34.68 10.14 36.34 11.82 36.34 13.9V81.24C36.34 83.32 34.67 85 32.62 85C30.56 85 28.9 83.32 28.9 81.24V13.9ZM43.26 3.78C43.26 1.69 44.95 0 47.04 0C49.13 0 50.82 1.69 50.82 3.78V91.35C50.82 93.44 49.13 95.13 47.04 95.13C44.95 95.13 43.26 93.44 43.26 91.35V3.78ZM86.53 31.82C86.53 29.73 88.22 28.04 90.31 28.04C92.4 28.04 94.09 29.73 94.09 31.82V63.31C94.09 65.4 92.4 67.09 90.31 67.09C88.22 67.09 86.53 65.4 86.53 63.31V31.82ZM72.11 23.32C72.11 21.23 73.8 19.54 75.89 19.54C77.98 19.54 79.67 21.23 79.67 23.32V71.82C79.67 73.91 77.98 75.6 75.89 75.6C73.8 75.6 72.11 73.91 72.11 71.82V23.32ZM57.74 13.9C57.74 11.82 59.41 10.14 61.46 10.14C63.52 10.14 65.18 11.82 65.18 13.9V81.24C65.18 83.32 63.51 85 61.46 85C59.4 85 57.74 83.32 57.74 81.24V13.9ZM115.43 13.9C115.43 11.82 117.1 10.14 119.15 10.14C121.21 10.14 122.87 11.82 122.87 13.9V81.24C122.87 83.32 121.2 85 119.15 85C117.09 85 115.43 83.32 115.43 81.24V13.9Z' fill='#F67286'/>
|
|
3
|
+
</svg>
|
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.7.
|
|
4
|
+
version: 3.7.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
@@ -398,6 +398,7 @@ files:
|
|
|
398
398
|
- assets/images/lightbulb.svg
|
|
399
399
|
- assets/images/loader.gif
|
|
400
400
|
- assets/images/logo.png
|
|
401
|
+
- assets/images/logo.svg
|
|
401
402
|
- assets/images/mahika.jpeg
|
|
402
403
|
- assets/images/paavan.webp
|
|
403
404
|
- assets/images/pallavi.jpeg
|