appscms-tools-theme 2.3.0 → 2.3.1
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/allele-frequency.json +242 -242
- data/_data/feature/en/compress-pdf.json +27 -25
- data/_data/feature/en/theframe.json +55 -55
- data/_data/footer/en/data.json +93 -1
- data/_data/header/en/data.json +47 -9
- data/_data/home/en/photoeffects.json +23 -23
- data/_data/home-1/en/en.json +58 -0
- data/_data/photo-categories.json +334 -334
- data/_data/photoeffects.json +116 -116
- data/_includes/batch-conversion.html +42 -13
- data/_includes/custom-head.html +5 -0
- data/_includes/footer/index.html +263 -2
- data/_includes/head/index.html +13 -0
- data/_includes/header/index.html +124 -5
- data/_includes/monumetric/ads.html +57 -57
- data/_includes/monumetric/profitablecpmgate.html +51 -51
- data/_includes/script.html +8 -0
- data/_layouts/batch.html +19 -13
- data/_layouts/blog-1.html +100 -0
- data/_layouts/calculator.html +69 -69
- data/_layouts/feature-1.html +283 -0
- data/_layouts/feature-download.html +309 -0
- data/_layouts/frame.html +205 -205
- data/_layouts/home-1.html +267 -0
- data/_layouts/home.html +4 -4
- data/_layouts/photo-effects-home.html +83 -83
- data/assets/css/batch.css +32 -17
- data/assets/css/blog-1.css +66 -0
- data/assets/css/calculators.css +40 -40
- data/assets/css/common-page.css +180 -0
- data/assets/css/feature-1.css +426 -0
- data/assets/css/frame.css +695 -695
- data/assets/css/home-1.css +225 -0
- data/assets/images/add.png +0 -0
- data/assets/images/add.svg +1 -0
- data/assets/images/bulb.png +0 -0
- data/assets/images/bulb.svg +1 -0
- data/assets/images/convert.png +0 -0
- data/assets/images/convert.svg +9 -0
- data/assets/js/ads.js +8 -8
- data/assets/js/append-div.js +10 -10
- data/assets/js/batch.js +3 -1
- data/assets/js/photo-effects.json +32 -32
- data/assets/js/testing-batch.js +12 -4
- data/assets/js/theme.js +11 -11
- metadata +20 -7
data/_includes/header/index.html
CHANGED
|
@@ -3,8 +3,125 @@
|
|
|
3
3
|
{% assign file = page.fileName %}
|
|
4
4
|
{% assign folder = page.folderName %}
|
|
5
5
|
{% assign Data= site.data[folder][lang][file] %}
|
|
6
|
-
<header class="nav-header">
|
|
7
6
|
|
|
7
|
+
{%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
8
|
+
<header class="home1-nav-header">
|
|
9
|
+
<nav class="header-navbar navbar navbar-expand-lg">
|
|
10
|
+
<div class="container px-0">
|
|
11
|
+
{% if dataToShow.navbarBrandText != "" %}
|
|
12
|
+
<a class="navbar-brand" href="/" title="{{dataToShow.navbarBrandText}}">{{dataToShow.navbarBrandText}}</a>
|
|
13
|
+
{% else %}
|
|
14
|
+
<a href="/">
|
|
15
|
+
<img class="header-logo-height" src="{{ dataToShow.navbarBrandLogo }}" alt="{{ dataToShow.navbarBrandLogo }}"
|
|
16
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
17
|
+
</a>
|
|
18
|
+
{% endif %}
|
|
19
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
|
20
|
+
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
21
|
+
<div class="header_bars"></div>
|
|
22
|
+
<div class="header_bars"></div>
|
|
23
|
+
<div class="header_bars"></div>
|
|
24
|
+
</button>
|
|
25
|
+
|
|
26
|
+
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
|
|
27
|
+
{%- if Data.megaMenu -%}
|
|
28
|
+
<li class="nav-item header_nav__item">
|
|
29
|
+
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
|
|
30
|
+
aria-haspopup="true" aria-expanded="false">
|
|
31
|
+
{{Data.megaMenu.nav-link-name}}
|
|
32
|
+
</a>
|
|
33
|
+
<ul class="dropmenu dropdown-menu" style="border-bottom: 0; box-shadow: 0 8px 5px -6px rgb(0 0 0 / 9%);"
|
|
34
|
+
aria-labelledby="navbarDropdown">
|
|
35
|
+
<div class="inner-dropdown">
|
|
36
|
+
{%- for item in Data.megaMenu.dropdown -%}
|
|
37
|
+
<div class="catPad mb-4">
|
|
38
|
+
<li class="tools_list_categoryName">{{item.categoryName}}</li>
|
|
39
|
+
<div> {%- for item in item.links -%}
|
|
40
|
+
<li>
|
|
41
|
+
<a class="tools_list_featureName" href="{{item.url}}">
|
|
42
|
+
{%- if item.iconSrc -%}
|
|
43
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}"
|
|
44
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
45
|
+
{%- endif -%}
|
|
46
|
+
{{item.name}}
|
|
47
|
+
</a>
|
|
48
|
+
</li>
|
|
49
|
+
{%- endfor -%}
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
{%- endfor -%}
|
|
53
|
+
</div>
|
|
54
|
+
</ul>
|
|
55
|
+
</li>
|
|
56
|
+
{%- else -%}
|
|
57
|
+
{%- if dataToShow.megaMenu -%}
|
|
58
|
+
<li class="nav-item header_nav__item">
|
|
59
|
+
<a class="dropdown-toggle ml-lg-5" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
|
|
60
|
+
aria-haspopup="true" aria-expanded="false">
|
|
61
|
+
{{dataToShow.megaMenu.nav-link-name}}
|
|
62
|
+
</a>
|
|
63
|
+
<ul class="dropmenu dropdown-menu" aria-labelledby="navbarDropdown">
|
|
64
|
+
<div class="inner-dropdown">
|
|
65
|
+
{%- for item in dataToShow.megaMenu.dropdown -%}
|
|
66
|
+
<div class="catPad mb-4">
|
|
67
|
+
<li class="tools_list_categoryName">{{item.categoryName}}</li>
|
|
68
|
+
<div> {%- for item in item.links -%}
|
|
69
|
+
<li>
|
|
70
|
+
<a class="tools_list_featureName" href="{{item.url}}">
|
|
71
|
+
{%- if item.iconSrc -%}
|
|
72
|
+
<img class="d-inline mr-2" loading="lazy" style="height:20px;width:20px;" src="{{item.iconSrc}}"
|
|
73
|
+
{%- if site.crossorigin -%} crossorigin {%- endif -%}>
|
|
74
|
+
{%- endif -%}
|
|
75
|
+
{{item.name}}</a>
|
|
76
|
+
</li>
|
|
77
|
+
{%- endfor -%}
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
{%- endfor -%}
|
|
81
|
+
</div>
|
|
82
|
+
</ul>
|
|
83
|
+
</li>
|
|
84
|
+
{%- endif -%}
|
|
85
|
+
{%- endif -%}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
<ul class="navbar-nav">
|
|
89
|
+
{% for item in dataToShow.navItems %}
|
|
90
|
+
<li class="nav-item header_nav__item">
|
|
91
|
+
<a href="{{item.url}}">{{item.name}}</a>
|
|
92
|
+
</li>
|
|
93
|
+
{% endfor %}
|
|
94
|
+
</ul>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
</nav>
|
|
98
|
+
</header>
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
{%- else -%}
|
|
124
|
+
<header class="nav-header">
|
|
8
125
|
<nav class="navbar navbar-expand-lg py-3 px-sm-2">
|
|
9
126
|
<div class="container px-0">
|
|
10
127
|
{% if dataToShow.navbarBrandText != "" %}
|
|
@@ -28,7 +145,8 @@
|
|
|
28
145
|
aria-haspopup="true" aria-expanded="false">
|
|
29
146
|
{{Data.megaMenu.nav-link-name}}
|
|
30
147
|
</a>
|
|
31
|
-
<ul class="dropmenu dropdown-menu"
|
|
148
|
+
<ul class="dropmenu dropdown-menu" style="border-bottom: 0; box-shadow: 0 8px 5px -6px rgb(0 0 0 / 9%);"
|
|
149
|
+
aria-labelledby="navbarDropdown">
|
|
32
150
|
<div class="inner-dropdown">
|
|
33
151
|
{%- for item in Data.megaMenu.dropdown -%}
|
|
34
152
|
<div class="catPad mb-4">
|
|
@@ -82,9 +200,9 @@
|
|
|
82
200
|
{%- endif -%}
|
|
83
201
|
|
|
84
202
|
|
|
85
|
-
<ul class="navbar-nav
|
|
203
|
+
<ul class="navbar-nav">
|
|
86
204
|
{% for item in dataToShow.navItems %}
|
|
87
|
-
<li class="nav-item nav__item">
|
|
205
|
+
<li class="nav-item nav__item mr-auto">
|
|
88
206
|
<a href="{{item.url}}">{{item.name}}</a>
|
|
89
207
|
</li>
|
|
90
208
|
{% endfor %}
|
|
@@ -93,4 +211,5 @@
|
|
|
93
211
|
</div>
|
|
94
212
|
</nav>
|
|
95
213
|
|
|
96
|
-
</header>
|
|
214
|
+
</header>
|
|
215
|
+
{%- endif -%}
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{% if page.url != '/' %}
|
|
2
|
-
{% if jekyll.environment == 'production' and site.adsId %}
|
|
3
|
-
<script>
|
|
4
|
-
const autoLoadDuration = 5; //In Seconds
|
|
5
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
6
|
-
|
|
7
|
-
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
8
|
-
|
|
9
|
-
eventList.forEach(function (event) {
|
|
10
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
function triggerScripts() {
|
|
14
|
-
runScripts();
|
|
15
|
-
clearTimeout(autoLoadTimeout);
|
|
16
|
-
eventList.forEach(function (event) {
|
|
17
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
function runScripts() {
|
|
22
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
23
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
</script>
|
|
27
|
-
<script type="text/javascript" delay="/assets/js/ads.js" crossorigin="anonymous"></script>
|
|
28
|
-
{% endif %}
|
|
29
|
-
|
|
30
|
-
{% if jekyll.environment == 'development' and site.adsId %}
|
|
31
|
-
<script>
|
|
32
|
-
const autoLoadDuration = 5; //In Seconds
|
|
33
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
34
|
-
|
|
35
|
-
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
36
|
-
|
|
37
|
-
eventList.forEach(function (event) {
|
|
38
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
function triggerScripts() {
|
|
42
|
-
runScripts();
|
|
43
|
-
clearTimeout(autoLoadTimeout);
|
|
44
|
-
eventList.forEach(function (event) {
|
|
45
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
function runScripts() {
|
|
50
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
51
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
52
|
-
});
|
|
53
|
-
}
|
|
54
|
-
</script>
|
|
55
|
-
<script type="text/javascript" delay="/assets/js/ads.js" crossorigin="anonymous"></script>
|
|
56
|
-
|
|
57
|
-
{% endif %}
|
|
1
|
+
{% if page.url != '/' %}
|
|
2
|
+
{% if jekyll.environment == 'production' and site.adsId %}
|
|
3
|
+
<script>
|
|
4
|
+
const autoLoadDuration = 5; //In Seconds
|
|
5
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
6
|
+
|
|
7
|
+
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
8
|
+
|
|
9
|
+
eventList.forEach(function (event) {
|
|
10
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
function triggerScripts() {
|
|
14
|
+
runScripts();
|
|
15
|
+
clearTimeout(autoLoadTimeout);
|
|
16
|
+
eventList.forEach(function (event) {
|
|
17
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function runScripts() {
|
|
22
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
23
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
</script>
|
|
27
|
+
<script type="text/javascript" delay="/assets/js/ads.js" crossorigin="anonymous"></script>
|
|
28
|
+
{% endif %}
|
|
29
|
+
|
|
30
|
+
{% if jekyll.environment == 'development' and site.adsId %}
|
|
31
|
+
<script>
|
|
32
|
+
const autoLoadDuration = 5; //In Seconds
|
|
33
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
34
|
+
|
|
35
|
+
const autoLoadTimeout = setTimeout(runScripts, autoLoadDuration * 1000);
|
|
36
|
+
|
|
37
|
+
eventList.forEach(function (event) {
|
|
38
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
function triggerScripts() {
|
|
42
|
+
runScripts();
|
|
43
|
+
clearTimeout(autoLoadTimeout);
|
|
44
|
+
eventList.forEach(function (event) {
|
|
45
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function runScripts() {
|
|
50
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
51
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
</script>
|
|
55
|
+
<script type="text/javascript" delay="/assets/js/ads.js" crossorigin="anonymous"></script>
|
|
56
|
+
|
|
57
|
+
{% endif %}
|
|
58
58
|
{% endif %}
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
{% if page.url != '/' %}
|
|
2
|
-
{% if jekyll.environment == 'production' and site.profitablecpmgateId %}
|
|
3
|
-
<script>
|
|
4
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
5
|
-
eventList.forEach(function (event) {
|
|
6
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
7
|
-
});
|
|
8
|
-
|
|
9
|
-
function triggerScripts() {
|
|
10
|
-
runScripts();
|
|
11
|
-
eventList.forEach(function (event) {
|
|
12
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
function runScripts() {
|
|
17
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
18
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
</script>
|
|
22
|
-
<script type="text/javascript" delay="/assets/js/append-div.js" crossorigin="anonymous"></script>
|
|
23
|
-
<script async="async" type="text/javascript" data-cfasync="false"
|
|
24
|
-
delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js" crossorigin="anonymous"></script>
|
|
25
|
-
{% endif %}
|
|
26
|
-
|
|
27
|
-
{% if jekyll.environment == 'development' and site.profitablecpmgateId %}
|
|
28
|
-
<script>
|
|
29
|
-
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
30
|
-
eventList.forEach(function (event) {
|
|
31
|
-
window.addEventListener(event, triggerScripts, { passive: true })
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
function triggerScripts() {
|
|
35
|
-
runScripts();
|
|
36
|
-
eventList.forEach(function (event) {
|
|
37
|
-
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function runScripts() {
|
|
42
|
-
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
43
|
-
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
</script>
|
|
47
|
-
<script type="text/javascript" delay="/assets/js/append-div.js" crossorigin="anonymous"></script>
|
|
48
|
-
<script async="async" type="text/javascript" data-cfasync="false"
|
|
49
|
-
delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js" crossorigin="anonymous"></script>
|
|
50
|
-
|
|
51
|
-
{% endif %}
|
|
1
|
+
{% if page.url != '/' %}
|
|
2
|
+
{% if jekyll.environment == 'production' and site.profitablecpmgateId %}
|
|
3
|
+
<script>
|
|
4
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
5
|
+
eventList.forEach(function (event) {
|
|
6
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
function triggerScripts() {
|
|
10
|
+
runScripts();
|
|
11
|
+
eventList.forEach(function (event) {
|
|
12
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function runScripts() {
|
|
17
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
18
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
22
|
+
<script type="text/javascript" delay="/assets/js/append-div.js" crossorigin="anonymous"></script>
|
|
23
|
+
<script async="async" type="text/javascript" data-cfasync="false"
|
|
24
|
+
delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js" crossorigin="anonymous"></script>
|
|
25
|
+
{% endif %}
|
|
26
|
+
|
|
27
|
+
{% if jekyll.environment == 'development' and site.profitablecpmgateId %}
|
|
28
|
+
<script>
|
|
29
|
+
const eventList = ["keydown", "mousemove", "wheel", "touchmove", "touchstart", "touchend"];
|
|
30
|
+
eventList.forEach(function (event) {
|
|
31
|
+
window.addEventListener(event, triggerScripts, { passive: true })
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
function triggerScripts() {
|
|
35
|
+
runScripts();
|
|
36
|
+
eventList.forEach(function (event) {
|
|
37
|
+
window.removeEventListener(event, triggerScripts, { passive: true });
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function runScripts() {
|
|
42
|
+
document.querySelectorAll("script[delay]").forEach(function (scriptTag) {
|
|
43
|
+
scriptTag.setAttribute("src", scriptTag.getAttribute("delay"));
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
</script>
|
|
47
|
+
<script type="text/javascript" delay="/assets/js/append-div.js" crossorigin="anonymous"></script>
|
|
48
|
+
<script async="async" type="text/javascript" data-cfasync="false"
|
|
49
|
+
delay="//pl17448257.profitablecpmgate.com/{{site.profitablecpmgateId}}/invoke.js" crossorigin="anonymous"></script>
|
|
50
|
+
|
|
51
|
+
{% endif %}
|
|
52
52
|
{% endif %}
|
data/_includes/script.html
CHANGED
|
@@ -26,13 +26,21 @@ replace: "$tool", page.tool }}
|
|
|
26
26
|
{%- endfor -%}
|
|
27
27
|
{%- endif -%}
|
|
28
28
|
<script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js" crossorigin="anonymous"></script>
|
|
29
|
+
|
|
29
30
|
{%- assign font = "Source Sans Pro" -%}
|
|
31
|
+
|
|
30
32
|
{%- if page.layout == "frame" -%}
|
|
31
33
|
{%- assign font = "PT Sans" -%}
|
|
32
34
|
{%- endif -%}
|
|
35
|
+
|
|
33
36
|
{%- if page.layout == "photo-effects-home" -%}
|
|
34
37
|
{%- assign font = "PT Sans" -%}
|
|
35
38
|
{%- endif -%}
|
|
39
|
+
|
|
40
|
+
{%- if page.layout == 'home-1' or page.layout == "feature-1" -%}
|
|
41
|
+
{%- assign font = "Inter" -%}
|
|
42
|
+
{%- endif -%}
|
|
43
|
+
|
|
36
44
|
<script>WebFont.load({ google: { families: ['{{font}}:200,300,400,500,600,700,800&display=swap'] } })</script>
|
|
37
45
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
38
46
|
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
|
data/_layouts/batch.html
CHANGED
|
@@ -55,24 +55,21 @@ layout: feature
|
|
|
55
55
|
<div class="workspace" style="display: none;">
|
|
56
56
|
<div class="row">
|
|
57
57
|
<div class="col-md-8">
|
|
58
|
-
<div class="files-panel">
|
|
58
|
+
<div class="files-panel d-none">
|
|
59
59
|
<div id="saving-data" style="display: none;">
|
|
60
60
|
<img loading="lazy" src="/img/save.gif" alt="saving"> <span class="ml-2">Saving your
|
|
61
61
|
images...</span>
|
|
62
62
|
</div>
|
|
63
63
|
|
|
64
|
-
<label>
|
|
65
|
-
<p class="inputfiles-label"> Input files</p>
|
|
66
|
-
|
|
67
|
-
</label>
|
|
64
|
+
<!-- <label>
|
|
65
|
+
<p class="inputfiles-label"> Input files</p> -->
|
|
66
|
+
<input style="display: none;" onchange="fileOnChange()" type="file" id="file" multiple />
|
|
67
|
+
<!-- </label> -->
|
|
68
68
|
|
|
69
69
|
<div class="selectedFilesList text-left"></div>
|
|
70
70
|
</div>
|
|
71
71
|
|
|
72
72
|
<div class="files-container-box">
|
|
73
|
-
<table class="table files-processing-list m-0"></table>
|
|
74
|
-
</div>
|
|
75
|
-
<div class="d-flex justify-content-between align-items-center bottom-section-container">
|
|
76
73
|
<div class="add-more-files">
|
|
77
74
|
<button class="btn add-more-files-button">
|
|
78
75
|
<input style="display: none;" onchange="fileOnChange2()" type="file" id="file2" multiple />
|
|
@@ -80,13 +77,22 @@ layout: feature
|
|
|
80
77
|
Add more files
|
|
81
78
|
</button>
|
|
82
79
|
</div>
|
|
80
|
+
<table class="table files-processing-list m-0"></table>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="justify-content-end align-items-center bottom-section-container">
|
|
83
83
|
|
|
84
|
-
<div class="
|
|
85
|
-
<button style="background-color:{{boxColor}};"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
<div class="download-wrapper">
|
|
85
|
+
<button style="background-color:{{boxColor}};" id="download-zip">
|
|
86
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
|
|
87
|
+
style="width: 20px; height:20px; margin-right:10px; fill:#fff;">
|
|
88
|
+
<path
|
|
89
|
+
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">
|
|
90
|
+
</path>
|
|
91
|
+
</svg>
|
|
92
|
+
Download Zip</button>
|
|
89
93
|
</div>
|
|
94
|
+
|
|
95
|
+
|
|
90
96
|
</div>
|
|
91
97
|
</div>
|
|
92
98
|
<div class="col-md-4">
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
{% include custom-head.html %}
|
|
4
|
+
|
|
5
|
+
<body>
|
|
6
|
+
{%- include header/blogHeader.html -%}
|
|
7
|
+
|
|
8
|
+
<section class="section_post">
|
|
9
|
+
<div class="container">
|
|
10
|
+
{%- if site.monumetricId -%}
|
|
11
|
+
<div class="row">
|
|
12
|
+
<div class="col-md-9 mx-auto">
|
|
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>
|
|
27
|
+
{%- endif -%}
|
|
28
|
+
<div class="main-content">
|
|
29
|
+
{{content}}
|
|
30
|
+
</div>
|
|
31
|
+
<div class="row">
|
|
32
|
+
{%- if site.monumetricId -%}
|
|
33
|
+
<div class="col-md-9 mx-auto">
|
|
34
|
+
<div class="row">
|
|
35
|
+
{%- endif -%}
|
|
36
|
+
{% for post in paginator.posts %}
|
|
37
|
+
<div class="
|
|
38
|
+
{%- if site.monumetricId -%}
|
|
39
|
+
col-md-6 mb-4 card-group
|
|
40
|
+
{%- else -%}
|
|
41
|
+
col-lg-4 col-md-6 mb-4 card-group
|
|
42
|
+
{%- endif -%}
|
|
43
|
+
|
|
44
|
+
">
|
|
45
|
+
<div class="blog1-card h-100">
|
|
46
|
+
<a href="{{ post.url }}">
|
|
47
|
+
<img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
|
|
48
|
+
class="blog1-card-img-top" alt="{{post.title}}" {%- if site.crossorigin -%}
|
|
49
|
+
crossorigin="anonymous" {%- endif -%}>
|
|
50
|
+
</a>
|
|
51
|
+
<div class="blog1-card-body">
|
|
52
|
+
<a href="{{ post.url }}" class="anchor_link">
|
|
53
|
+
<h4 class="blog1-card-title">{{ post.title }}</h4>
|
|
54
|
+
<p class="blog-card-desc">{{post.description}}</p>
|
|
55
|
+
</a>
|
|
56
|
+
{%- include authors/authors.html -%}
|
|
57
|
+
<div class="card-footer bg-white pl-0 mt-3">
|
|
58
|
+
<div class="wrapfooter blog1-wrapfooter mb-0">
|
|
59
|
+
{% if post.author %}
|
|
60
|
+
<span class="meta-footer-thumb">
|
|
61
|
+
<img class="author-thumb" loading="lazy" src="{{ image }}"
|
|
62
|
+
alt="{{ authorName }}" {%- if site.crossorigin -%}
|
|
63
|
+
crossorigin="anonymous" {%- endif -%}>
|
|
64
|
+
</span>
|
|
65
|
+
{% endif %}
|
|
66
|
+
|
|
67
|
+
<span class="author-meta">
|
|
68
|
+
<span class="post-name">
|
|
69
|
+
<a target="_blank" href="/blog">{{authorName}}</a>
|
|
70
|
+
</span><br>
|
|
71
|
+
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
72
|
+
</span>
|
|
73
|
+
<!-- <span class="post-read-more "><a class="text-dark" href="{{ post.url }}"
|
|
74
|
+
title="Read Story">Read More</a></span> -->
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
{% endfor %}
|
|
83
|
+
{%- if site.monumetricId -%}
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
{%- endif -%}
|
|
87
|
+
</div>
|
|
88
|
+
{%- include paginationBlogPage.html -%}
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
{% include section/count.html %}
|
|
92
|
+
</section>
|
|
93
|
+
{%- include section/alertbar.html -%}
|
|
94
|
+
|
|
95
|
+
{% include script.html %}
|
|
96
|
+
<script src="{{ '/assets/js/TopScroll.js' | relative_url }}" {%- if site.crossorigin -%} crossorigin="anonymous" {%-
|
|
97
|
+
endif -%}></script>
|
|
98
|
+
</body>
|
|
99
|
+
|
|
100
|
+
</html>
|