appscms-tools-theme 2.3.6 → 2.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/_data/blog/blog.yml +1 -0
  3. data/_data/blog/nav.json +1 -1
  4. data/_data/feature/en/allele-frequency.json +242 -242
  5. data/_data/feature/en/compress-pdf.json +7 -12
  6. data/_data/feature/en/theframe.json +23 -23
  7. data/_data/home/en/en.json +11 -11
  8. data/_data/home/en/photoeffects.json +23 -23
  9. data/_data/home-1/en/en.json +178 -6
  10. data/_data/photo-categories.json +334 -334
  11. data/_data/photoeffects.json +116 -116
  12. data/_includes/footer/index.html +6 -12
  13. data/_includes/head/index.html +2 -2
  14. data/_includes/header/blogHeader.html +29 -24
  15. data/_includes/header/index.html +130 -34
  16. data/_includes/monumetric/ads.html +57 -57
  17. data/_includes/monumetric/profitablecpmgate.html +51 -51
  18. data/_includes/paginationBlogPage.html +38 -1
  19. data/_layouts/blog-1.html +8 -22
  20. data/_layouts/calculator.html +69 -69
  21. data/_layouts/feature-1.html +93 -60
  22. data/_layouts/frame.html +205 -205
  23. data/_layouts/home-1.html +48 -85
  24. data/_layouts/imagekit.html +115 -122
  25. data/_layouts/photo-effects-home.html +83 -83
  26. data/assets/css/batch.css +1 -1
  27. data/assets/css/calculators.css +40 -40
  28. data/assets/css/common.css +548 -0
  29. data/assets/css/feature-1.css +82 -294
  30. data/assets/css/frame.css +695 -695
  31. data/assets/css/home-1.css +5 -12
  32. data/assets/css/imagekit.css +748 -748
  33. data/assets/images/addimg.svg +2 -2
  34. data/assets/images/bulb.svg +1 -1
  35. data/assets/images/cloud_new.svg +1 -0
  36. data/assets/images/cross.svg +1 -0
  37. data/assets/images/fast.svg +1 -0
  38. data/assets/images/lightbulb.svg +1 -0
  39. data/assets/images/shield.svg +1 -0
  40. data/assets/images/target.svg +1 -0
  41. data/assets/js/ads.js +8 -8
  42. data/assets/js/append-div.js +10 -10
  43. data/assets/js/batch.js +30 -8
  44. data/assets/js/photo-effects.json +32 -32
  45. data/assets/js/theme.js +11 -11
  46. metadata +14 -9
  47. data/_data/blog/blog.json +0 -1
  48. data/assets/css/common-page.css +0 -180
@@ -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 %}
@@ -3,6 +3,42 @@
3
3
  <div class="pointerup"><i class="fa fa-caret-up"></i></div>
4
4
  <span class="navigation" role="navigation"></span>
5
5
  </div>
6
+
7
+ {%- if page.layout == "blog-1" -%}
8
+ {%- assign color = site.data.blog.blog.color -%}
9
+ {% if paginator.total_pages > 1 %}
10
+ <div class="blog-pagination">
11
+ {% if paginator.previous_page %}
12
+ <a style="color: {{color}}; font-weight: 900;"
13
+ href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
14
+ {% else %}
15
+ <span class="text-muted">&laquo; Prev</span>
16
+ {% endif %}
17
+
18
+ {% for page in (1..paginator.total_pages) %}
19
+ {% if page == paginator.page %}
20
+ <span class="webjeda text-muted">{{ page }}</span>
21
+ {% elsif page == 1 %}
22
+ <a href="/blog" style="color: {{color}}; font-weight: 900;">{{ page }}</a>
23
+ {% else %}
24
+ <a style="color: {{color}}; font-weight: 900;"
25
+ href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page
26
+ }}</a>
27
+ {% endif %}
28
+ {% endfor %}
29
+
30
+ {% if paginator.next_page %}
31
+ <a style="color:{{color}}; font-weight: 900;"
32
+ href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next
33
+ &raquo;</a>
34
+ {% else %}
35
+ <span class="text-muted">Next &raquo;</span>
36
+ {% endif %}
37
+ </div>
38
+ {% endif %}
39
+
40
+ {%- else -%}
41
+
6
42
  {% if paginator.total_pages > 1 %}
7
43
  <div class="blog-pagination">
8
44
  {% if paginator.previous_page %}
@@ -32,4 +68,5 @@
32
68
  <span class="text-muted">Next &raquo;</span>
33
69
  {% endif %}
34
70
  </div>
35
- {% endif %}
71
+ {% endif %}
72
+ {%- endif -%}
data/_layouts/blog-1.html CHANGED
@@ -5,12 +5,10 @@
5
5
  <body>
6
6
  {%- include header/blogHeader.html -%}
7
7
 
8
- <section class="section_post">
8
+ <section class="section_post mb-5">
9
9
  <div class="container">
10
- {%- if site.monumetricId -%}
11
10
  <div class="row">
12
- <div class="col-md-9 mx-auto">
13
- {%- endif -%}
11
+ <div class="col-md-12 mx-auto">
14
12
  <div class="row justify-content-center section-title-wrap">
15
13
  <div class="col-lg-12">
16
14
  <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{
@@ -21,27 +19,16 @@
21
19
  </p>
22
20
  </div>
23
21
  </div>
24
- {%- if site.monumetricId -%}
25
22
  </div>
26
23
  </div>
27
- {%- endif -%}
28
24
  <div class="main-content">
29
25
  {{content}}
30
26
  </div>
31
27
  <div class="row">
32
- {%- if site.monumetricId -%}
33
- <div class="col-md-9 mx-auto">
28
+ <div class="col-md-12 mx-auto">
34
29
  <div class="row">
35
- {%- endif -%}
36
30
  {% 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
- ">
31
+ <div class="col-lg-4 col-md-6 mb-4 card-group ">
45
32
  <div class="blog1-card h-100">
46
33
  <a href="{{ post.url }}">
47
34
  <img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
@@ -80,18 +67,17 @@
80
67
  </div>
81
68
  </div>
82
69
  {% endfor %}
83
- {%- if site.monumetricId -%}
70
+
84
71
  </div>
85
72
  </div>
86
- {%- endif -%}
87
73
  </div>
88
74
  {%- include paginationBlogPage.html -%}
89
75
  </div>
90
76
 
91
- {% include section/count.html %}
92
- </section>
93
- {%- include section/alertbar.html -%}
77
+ <!-- {% include section/count.html %} -->
94
78
 
79
+
80
+ </section>
95
81
  {% include script.html %}
96
82
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}" {%- if site.crossorigin -%} crossorigin="anonymous" {%-
97
83
  endif -%}></script>
@@ -1,70 +1,70 @@
1
- ---
2
- layout: feature
3
- ---
4
-
5
- {% assign file = page.fileName %}
6
- {% assign lang = page.lang %}
7
- {% assign folder = page.folderName %}
8
- {% assign calculatorData= site.data[folder][lang][file].calculatorData %}
9
-
10
- <div class="container">
11
- <div class="calculator-workspace">
12
- <div class="row w-100 mx-auto">
13
- <form id="calculator-form" class="w-100">
14
- {%- for item in calculatorData.calculatorRow -%}
15
- <div class="row" id="calculator-row-{{forloop.index}}">
16
- {%- if item.labelName -%}
17
- <div class="col-md-12">
18
- <label for="{{item.labelId}}">{{item.labelName}}</label>
19
- </div>
20
- {%- endif -%}
21
- {%- if item.dropDown or item.inputBox or item.dateTimePicker -%}
22
- <div class="col-md-12">
23
- <div class="d-flex calculator-inputs">
24
- {%- if item.inputBox -%}
25
- <input class="form-control" type="text" name="{{item.inputName}}" id="{{item.inputId}}">
26
- {%- endif -%}
27
- {%- if item.dropDown -%}
28
- <select class="form-control" name="{{item.dropDownName}}" id="{{item.dropDownId}}"></select>
29
- {%- endif -%}
30
- {%- if item.dateTimePicker -%}
31
- <input class="form-control" type="date" name="{{item.dateTimePicker}}"
32
- id="{{item.dateTimePickerId}}">
33
- {%- endif -%}
34
- {%- if item.unit -%}
35
- <div class="unit">{{item.unit}}</div>
36
- {%- endif -%}
37
-
38
- </div>
39
-
40
- </div>
41
- {%- endif -%}
42
-
43
-
44
- </div>
45
- {%- endfor -%}
46
- <div id="dynamic-section"></div>
47
- </form>
48
-
49
- </div>
50
- <div class="row w-100 mx-auto">
51
- {%- if calculatorData.ButtonValue -%}
52
- <div class="col-12 mt-4 px-0">
53
- <div class="d-flex justify-content-end">
54
- <button class="submit-button" style="background-color:{{site.data[folder][lang][file].color}} ;"
55
- type="{{calculatorData.ButtonType}}"
56
- id="{{calculatorData.ButtonId}}">{{calculatorData.ButtonValue}}</button>
57
- </div>
58
-
59
- </div>
60
- {%- endif -%}
61
- {%- if calculatorData.resultDiv -%}
62
- <div class="col-12 mt-3">
63
- <div class="result-section" id="result-section">
64
-
65
- </div>
66
- </div>
67
- {%- endif -%}
68
- </div>
69
- </div>
1
+ ---
2
+ layout: feature
3
+ ---
4
+
5
+ {% assign file = page.fileName %}
6
+ {% assign lang = page.lang %}
7
+ {% assign folder = page.folderName %}
8
+ {% assign calculatorData= site.data[folder][lang][file].calculatorData %}
9
+
10
+ <div class="container">
11
+ <div class="calculator-workspace">
12
+ <div class="row w-100 mx-auto">
13
+ <form id="calculator-form" class="w-100">
14
+ {%- for item in calculatorData.calculatorRow -%}
15
+ <div class="row" id="calculator-row-{{forloop.index}}">
16
+ {%- if item.labelName -%}
17
+ <div class="col-md-12">
18
+ <label for="{{item.labelId}}">{{item.labelName}}</label>
19
+ </div>
20
+ {%- endif -%}
21
+ {%- if item.dropDown or item.inputBox or item.dateTimePicker -%}
22
+ <div class="col-md-12">
23
+ <div class="d-flex calculator-inputs">
24
+ {%- if item.inputBox -%}
25
+ <input class="form-control" type="text" name="{{item.inputName}}" id="{{item.inputId}}">
26
+ {%- endif -%}
27
+ {%- if item.dropDown -%}
28
+ <select class="form-control" name="{{item.dropDownName}}" id="{{item.dropDownId}}"></select>
29
+ {%- endif -%}
30
+ {%- if item.dateTimePicker -%}
31
+ <input class="form-control" type="date" name="{{item.dateTimePicker}}"
32
+ id="{{item.dateTimePickerId}}">
33
+ {%- endif -%}
34
+ {%- if item.unit -%}
35
+ <div class="unit">{{item.unit}}</div>
36
+ {%- endif -%}
37
+
38
+ </div>
39
+
40
+ </div>
41
+ {%- endif -%}
42
+
43
+
44
+ </div>
45
+ {%- endfor -%}
46
+ <div id="dynamic-section"></div>
47
+ </form>
48
+
49
+ </div>
50
+ <div class="row w-100 mx-auto">
51
+ {%- if calculatorData.ButtonValue -%}
52
+ <div class="col-12 mt-4 px-0">
53
+ <div class="d-flex justify-content-end">
54
+ <button class="submit-button" style="background-color:{{site.data[folder][lang][file].color}} ;"
55
+ type="{{calculatorData.ButtonType}}"
56
+ id="{{calculatorData.ButtonId}}">{{calculatorData.ButtonValue}}</button>
57
+ </div>
58
+
59
+ </div>
60
+ {%- endif -%}
61
+ {%- if calculatorData.resultDiv -%}
62
+ <div class="col-12 mt-3">
63
+ <div class="result-section" id="result-section">
64
+
65
+ </div>
66
+ </div>
67
+ {%- endif -%}
68
+ </div>
69
+ </div>
70
70
  </div>