appscms-tools-theme 3.9.5 → 3.9.7
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/blog/relatedblogs.json +252 -252
- data/_data/feature/en/3_shop_posters.json +361 -1
- data/_data/feature/en/allele-frequency.json +321 -1
- data/_data/feature/en/batch-conversion.json +153 -1
- data/_data/feature/en/compress-pdf.json +6 -6
- data/_data/feature/en/devtools.json +299 -1
- data/_data/feature/en/face-detection.json +123 -1
- data/_data/feature/en/split-pdf.json +176 -1
- data/_data/feature/en/theframe.json +126 -1
- data/_data/feature/hi/compress-pdf.json +162 -1
- data/_data/feature/tr/compress-pdf.json +161 -1
- data/_data/home/en/en.json +6 -6
- data/_data/home/en/photoeffects.json +97 -1
- data/_data/home-1/en/en.json +308 -1
- data/_includes/appscms/footer/footer.html +1 -1
- data/_includes/appscms/head/bloghead.html +200 -0
- data/_includes/appscms/home/feature-boxes.html +1 -1
- data/_includes/appscms/navbars/navbar.html +1 -1
- data/_includes/appscms/navbars/toolbar.html +90 -39
- data/_includes/batch-conversion.html +137 -62
- data/_includes/dropdown/langdropdown.html +25 -15
- data/_includes/header/blogHeader.html +1 -1
- data/_includes/paginationBlogPage.html +62 -64
- data/_layouts/allAuthors.html +101 -91
- data/_layouts/appscms-author.html +409 -0
- data/_layouts/appscms-authors.html +132 -0
- data/_layouts/appscms-blog.html +129 -27
- data/_layouts/appscms-home.html +15 -0
- data/_layouts/appscms-imagekit.html +1 -1
- data/_layouts/appscms-post.html +244 -0
- data/_layouts/batch.html +159 -108
- data/_layouts/blog.html +112 -76
- data/_layouts/calculator.html +85 -76
- data/_layouts/feature-1.html +3 -6
- data/_layouts/feature.html +2 -5
- data/_layouts/frame.html +2 -2
- data/_layouts/imagekit.html +4 -4
- data/assets/css/appscms-blog.css +500 -0
- data/assets/css/appscms-theme.css +30 -9
- data/assets/css/calculators.css +0 -1
- data/assets/js/appscms-search.js +10 -2
- data/assets/js/appscms-theme.js +28 -0
- metadata +7 -2
data/_layouts/batch.html
CHANGED
|
@@ -1,126 +1,177 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: feature
|
|
3
3
|
---
|
|
4
|
+
|
|
4
5
|
<div class="container-fluid">
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
{%- assign boxColor =
|
|
7
|
+
site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
8
|
+
<div
|
|
9
|
+
class="custom-box"
|
|
10
|
+
style="padding-bottom: 250px; padding-top: 0px"
|
|
11
|
+
data-color="{{boxColor}}"
|
|
12
|
+
>
|
|
13
|
+
<div style="display: none" id="file-loader">
|
|
14
|
+
<img
|
|
15
|
+
src="/assets/images/spinner.gif"
|
|
16
|
+
alt="loading..."
|
|
17
|
+
{%-
|
|
18
|
+
if
|
|
19
|
+
site.crossorigin
|
|
20
|
+
-%}
|
|
21
|
+
crossorigin
|
|
22
|
+
{%-
|
|
23
|
+
endif
|
|
24
|
+
-%}
|
|
25
|
+
/>
|
|
26
|
+
<p>Please Wait ,Loading Your file</p>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
<div class="file-input">
|
|
30
|
+
<div class="d-flex justify-content-center align-items-center">
|
|
31
|
+
<div id="Inputbox" class="boxes">
|
|
32
|
+
<img
|
|
33
|
+
height="21px"
|
|
34
|
+
width="21px"
|
|
35
|
+
src="/assets/images/add.svg"
|
|
36
|
+
{%-
|
|
37
|
+
if
|
|
38
|
+
site.crossorigin
|
|
39
|
+
-%}
|
|
40
|
+
crossorigin
|
|
41
|
+
{%-
|
|
42
|
+
endif
|
|
43
|
+
-%}
|
|
44
|
+
/>
|
|
45
|
+
<span class="ml-1">CHOOSE FILE</span>
|
|
46
|
+
</div>
|
|
47
|
+
<div class="file-pick-dropdown">
|
|
48
|
+
<i class="fas arrow-sign fa-angle-down"></i>
|
|
49
|
+
<div class="file-picker-dropdown" style="display: none">
|
|
50
|
+
<button id="filepicker">
|
|
51
|
+
<img
|
|
52
|
+
width="18px"
|
|
53
|
+
height="18px"
|
|
54
|
+
src="/assets/images/google-drive.png"
|
|
55
|
+
{%-
|
|
9
56
|
if
|
|
10
57
|
site.crossorigin
|
|
11
58
|
-%}
|
|
12
59
|
crossorigin
|
|
13
60
|
{%-
|
|
14
61
|
endif
|
|
15
|
-
-%}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
<button id='filepicker'>
|
|
37
|
-
<img width="18px" height="18px" src="/assets/images/google-drive.png" {%-
|
|
38
|
-
if
|
|
39
|
-
site.crossorigin
|
|
40
|
-
-%}
|
|
41
|
-
crossorigin
|
|
42
|
-
{%-
|
|
43
|
-
endif
|
|
44
|
-
-%}
|
|
45
|
-
alt="google-drive-icon">
|
|
46
|
-
</button>
|
|
47
|
-
<button id="dropbox">
|
|
48
|
-
<img {%-
|
|
49
|
-
if
|
|
50
|
-
site.crossorigin
|
|
51
|
-
-%}
|
|
52
|
-
crossorigin
|
|
53
|
-
{%-
|
|
54
|
-
endif
|
|
55
|
-
-%} width="18px" height="18px" src="/assets/images/dropbox.png" alt="dropbox-icon">
|
|
56
|
-
</button>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
|
|
60
|
-
</div>
|
|
61
|
-
<p id="dropfile" class="text-dark">or drop your image here</p>
|
|
62
|
+
-%}
|
|
63
|
+
alt="google-drive-icon"
|
|
64
|
+
/>
|
|
65
|
+
</button>
|
|
66
|
+
<button id="dropbox">
|
|
67
|
+
<img
|
|
68
|
+
{%-
|
|
69
|
+
if
|
|
70
|
+
site.crossorigin
|
|
71
|
+
-%}
|
|
72
|
+
crossorigin
|
|
73
|
+
{%-
|
|
74
|
+
endif
|
|
75
|
+
-%}
|
|
76
|
+
width="18px"
|
|
77
|
+
height="18px"
|
|
78
|
+
src="/assets/images/dropbox.png"
|
|
79
|
+
alt="dropbox-icon"
|
|
80
|
+
/>
|
|
81
|
+
</button>
|
|
82
|
+
</div>
|
|
62
83
|
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<p id="dropfile" class="text-dark">or drop your image here</p>
|
|
63
86
|
</div>
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
87
|
+
</div>
|
|
88
|
+
<div class="workspace" style="display: none">
|
|
89
|
+
<div class="row">
|
|
90
|
+
<div class="col-md-8">
|
|
91
|
+
<div class="files-panel d-none">
|
|
92
|
+
<div id="saving-data" style="display: none">
|
|
93
|
+
<img
|
|
94
|
+
{%-
|
|
95
|
+
if
|
|
96
|
+
site.crossorigin
|
|
97
|
+
-%}
|
|
98
|
+
crossorigin
|
|
99
|
+
{%-
|
|
100
|
+
endif
|
|
101
|
+
-%}
|
|
102
|
+
loading="lazy"
|
|
103
|
+
src="/img/save.gif"
|
|
104
|
+
alt="saving"
|
|
105
|
+
/>
|
|
106
|
+
<span class="ml-2">Saving your images...</span>
|
|
107
|
+
</div>
|
|
79
108
|
|
|
80
|
-
|
|
109
|
+
<!-- <label>
|
|
81
110
|
<p class="inputfiles-label"> Input files</p> -->
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
<button class="btn add-more-files-button">
|
|
91
|
-
<input style="display: none;" onchange="fileOnChange2()" type="file" id="file2" multiple />
|
|
92
|
-
<img {%-
|
|
93
|
-
if
|
|
94
|
-
site.crossorigin
|
|
95
|
-
-%}
|
|
96
|
-
crossorigin
|
|
97
|
-
{%-
|
|
98
|
-
endif
|
|
99
|
-
-%} src="/assets/images/add.png" alt="add-more-files">
|
|
100
|
-
Add more files
|
|
101
|
-
</button>
|
|
102
|
-
</div>
|
|
103
|
-
<table class="table files-processing-list m-0"></table>
|
|
104
|
-
</div>
|
|
105
|
-
<div class="justify-content-end align-items-center bottom-section-container">
|
|
106
|
-
|
|
107
|
-
<div class="download-wrapper">
|
|
108
|
-
<button style="background-color:{{boxColor}};" id="download-zip">
|
|
109
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
|
110
|
-
style="width: 20px; height:20px; margin-right:10px; fill:#fff;">
|
|
111
|
-
<path
|
|
112
|
-
d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z">
|
|
113
|
-
</path>
|
|
114
|
-
</svg>
|
|
115
|
-
Download Zip</button>
|
|
116
|
-
</div>
|
|
111
|
+
<input
|
|
112
|
+
style="display: none"
|
|
113
|
+
onchange="fileOnChange()"
|
|
114
|
+
type="file"
|
|
115
|
+
id="file"
|
|
116
|
+
multiple
|
|
117
|
+
/>
|
|
118
|
+
<!-- </label> -->
|
|
117
119
|
|
|
120
|
+
<div class="selectedFilesList text-left"></div>
|
|
121
|
+
</div>
|
|
118
122
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<
|
|
122
|
-
|
|
123
|
-
|
|
123
|
+
<div class="files-container-box">
|
|
124
|
+
<div class="add-more-files">
|
|
125
|
+
<button class="btn add-more-files-button">
|
|
126
|
+
<input
|
|
127
|
+
style="display: none"
|
|
128
|
+
onchange="fileOnChange2()"
|
|
129
|
+
type="file"
|
|
130
|
+
id="file2"
|
|
131
|
+
multiple
|
|
132
|
+
/>
|
|
133
|
+
<img
|
|
134
|
+
{%-
|
|
135
|
+
if
|
|
136
|
+
site.crossorigin
|
|
137
|
+
-%}
|
|
138
|
+
crossorigin
|
|
139
|
+
{%-
|
|
140
|
+
endif
|
|
141
|
+
-%}
|
|
142
|
+
src="/assets/images/add.png"
|
|
143
|
+
alt="add-more-files"
|
|
144
|
+
/>
|
|
145
|
+
Add more files
|
|
146
|
+
</button>
|
|
147
|
+
</div>
|
|
148
|
+
<table class="table files-processing-list m-0"></table>
|
|
149
|
+
</div>
|
|
150
|
+
<div
|
|
151
|
+
class="justify-content-end align-items-center bottom-section-container"
|
|
152
|
+
>
|
|
153
|
+
<div class="download-wrapper">
|
|
154
|
+
<button style="background:{{boxColor}};" id="download-zip">
|
|
155
|
+
<svg
|
|
156
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
157
|
+
viewBox="0 0 512 512"
|
|
158
|
+
style="
|
|
159
|
+
width: 20px;
|
|
160
|
+
height: 20px;
|
|
161
|
+
margin-right: 10px;
|
|
162
|
+
fill: #fff;
|
|
163
|
+
"
|
|
164
|
+
>
|
|
165
|
+
<path
|
|
166
|
+
d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z"
|
|
167
|
+
></path>
|
|
168
|
+
</svg>
|
|
169
|
+
Download Zip
|
|
170
|
+
</button>
|
|
171
|
+
</div>
|
|
124
172
|
</div>
|
|
173
|
+
</div>
|
|
174
|
+
<div class="col-md-4">{{content}}</div>
|
|
125
175
|
</div>
|
|
126
|
-
</div>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
data/_layouts/blog.html
CHANGED
|
@@ -1,95 +1,131 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
{% include custom-head.html %}
|
|
3
|
+
{% include custom-head.html %}
|
|
4
4
|
|
|
5
|
-
<body>
|
|
5
|
+
<body>
|
|
6
6
|
{%- include header/blogHeader.html -%}
|
|
7
7
|
|
|
8
8
|
<section class="section_post">
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
{%- endif -%}
|
|
14
|
-
<div class="row justify-content-center section-title-wrap">
|
|
15
|
-
<div class="col-lg-12">
|
|
16
|
-
<h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{
|
|
17
|
-
site.data.blog.blog.h1 }}
|
|
18
|
-
</h1>
|
|
19
|
-
<p class="lead mb-5 mt-1" style="font-size: 18px;">
|
|
20
|
-
{{ site.data.blog.blog.description }}
|
|
21
|
-
</p>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
{%- if site.monumetricId -%}
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
9
|
+
<div class="container">
|
|
10
|
+
{%- if site.monumetricId -%}
|
|
11
|
+
<div class="row">
|
|
12
|
+
<div class="col-md-9 mx-auto">
|
|
27
13
|
{%- endif -%}
|
|
28
|
-
<div class="
|
|
29
|
-
|
|
14
|
+
<div class="row justify-content-center section-title-wrap">
|
|
15
|
+
<div class="col-lg-12">
|
|
16
|
+
<h1
|
|
17
|
+
style="font-weight: 900"
|
|
18
|
+
class="display-4 m-0 small_description"
|
|
19
|
+
>
|
|
20
|
+
{{ site.data.blog.blog.h1 }}
|
|
21
|
+
</h1>
|
|
22
|
+
<p class="lead mb-5 mt-1" style="font-size: 18px">
|
|
23
|
+
{{ site.data.blog.blog.description }}
|
|
24
|
+
</p>
|
|
25
|
+
</div>
|
|
30
26
|
</div>
|
|
27
|
+
{%- if site.monumetricId -%}
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
{%- endif -%}
|
|
31
|
+
<div class="main-content">{{content}}</div>
|
|
32
|
+
<div class="row">
|
|
33
|
+
{%- if site.monumetricId -%}
|
|
34
|
+
<div class="col-md-9 mx-auto">
|
|
31
35
|
<div class="row">
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
36
|
+
{%- endif -%} {% for post in paginator.posts %}
|
|
37
|
+
<div
|
|
38
|
+
class="{%- if site.monumetricId -%} col-md-6 mb-4 card-group {%- else -%} col-lg-4 col-md-6 mb-4 card-group {%- endif -%}"
|
|
39
|
+
>
|
|
40
|
+
<div class="card h-100">
|
|
41
|
+
<a href="{{ post.url }}">
|
|
42
|
+
<img
|
|
43
|
+
src="{{ post.image }}"
|
|
44
|
+
loading="lazy"
|
|
45
|
+
height="215px"
|
|
46
|
+
width="100%"
|
|
47
|
+
class="card-img-top"
|
|
48
|
+
alt="{{post.title}}"
|
|
49
|
+
{%-
|
|
50
|
+
if
|
|
51
|
+
site.crossorigin
|
|
52
|
+
-%}
|
|
53
|
+
crossorigin="anonymous"
|
|
54
|
+
{%-
|
|
55
|
+
endif
|
|
56
|
+
-%}
|
|
57
|
+
/>
|
|
58
|
+
</a>
|
|
59
|
+
<div class="card-body">
|
|
60
|
+
<a href="{{ post.url }}" class="anchor_link">
|
|
61
|
+
<h4 class="card-title mb-4">{{ post.title }}</h4>
|
|
62
|
+
</a>
|
|
63
|
+
</div>
|
|
64
|
+
{%- include authors/authors.html -%}
|
|
65
|
+
<div class="card-footer bg-white">
|
|
66
|
+
<div class="wrapfooter">
|
|
67
|
+
{% if post.author %}
|
|
68
|
+
<a
|
|
69
|
+
target="_blank"
|
|
70
|
+
href="/authors/{{authorName | downcase | replace: ' ' , '-' }}"
|
|
71
|
+
class="meta-footer-thumb"
|
|
72
|
+
>
|
|
73
|
+
<img
|
|
74
|
+
class="author-thumb"
|
|
75
|
+
loading="lazy"
|
|
76
|
+
src="{{ image }}"
|
|
77
|
+
alt="{{ authorName }}"
|
|
78
|
+
{%-
|
|
79
|
+
if
|
|
80
|
+
site.crossorigin
|
|
81
|
+
-%}
|
|
82
|
+
crossorigin="anonymous"
|
|
83
|
+
{%-
|
|
84
|
+
endif
|
|
85
|
+
-%}
|
|
86
|
+
/>
|
|
87
|
+
</a>
|
|
88
|
+
{% endif %}
|
|
66
89
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
90
|
+
<span class="author-meta">
|
|
91
|
+
<span class="post-name">
|
|
92
|
+
<a
|
|
93
|
+
target="_blank"
|
|
94
|
+
href="/authors/{{authorName | downcase | replace: ' ' , '-' }}"
|
|
95
|
+
>{{authorName}}</a
|
|
96
|
+
> </span
|
|
97
|
+
><br />
|
|
98
|
+
<span class="post-date"
|
|
99
|
+
>{{post.date | date_to_string }}</span
|
|
100
|
+
>
|
|
101
|
+
</span>
|
|
79
102
|
</div>
|
|
103
|
+
</div>
|
|
80
104
|
</div>
|
|
81
|
-
|
|
105
|
+
</div>
|
|
106
|
+
{% endfor %} {%- if site.monumetricId -%}
|
|
82
107
|
</div>
|
|
83
|
-
|
|
108
|
+
</div>
|
|
109
|
+
{%- endif -%}
|
|
84
110
|
</div>
|
|
111
|
+
{%- include paginationBlogPage.html -%}
|
|
112
|
+
</div>
|
|
85
113
|
|
|
86
|
-
|
|
114
|
+
{% include section/count.html %}
|
|
87
115
|
</section>
|
|
88
116
|
<!-- {%- include section/alertbar.html -%} -->
|
|
89
117
|
|
|
90
118
|
{% include script.html %}
|
|
91
|
-
<script
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
119
|
+
<script
|
|
120
|
+
src="{{ '/assets/js/TopScroll.js' | relative_url }}"
|
|
121
|
+
{%-
|
|
122
|
+
if
|
|
123
|
+
site.crossorigin
|
|
124
|
+
-%}
|
|
125
|
+
crossorigin="anonymous"
|
|
126
|
+
{%-
|
|
127
|
+
endif
|
|
128
|
+
-%}
|
|
129
|
+
></script>
|
|
130
|
+
</body>
|
|
131
|
+
</html>
|