appscms-tools-theme 2.2.8 → 2.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/_data/feature/en/allele-frequency.json +242 -242
  3. data/_data/feature/en/compress-pdf.json +27 -25
  4. data/_data/feature/en/theframe.json +55 -50
  5. data/_data/footer/en/data.json +93 -1
  6. data/_data/header/en/data.json +47 -9
  7. data/_data/home/en/photoeffects.json +24 -0
  8. data/_data/home-1/en/en.json +58 -0
  9. data/_data/photo-categories.json +334 -451
  10. data/_data/photoeffects.json +117 -0
  11. data/_includes/batch-conversion.html +42 -13
  12. data/_includes/custom-head.html +5 -0
  13. data/_includes/footer/index.html +263 -2
  14. data/_includes/head/index.html +13 -0
  15. data/_includes/header/index.html +124 -5
  16. data/_includes/monumetric/ads.html +57 -57
  17. data/_includes/monumetric/profitablecpmgate.html +51 -51
  18. data/_includes/script.html +11 -0
  19. data/_layouts/batch.html +19 -13
  20. data/_layouts/blog-1.html +100 -0
  21. data/_layouts/calculator.html +69 -69
  22. data/_layouts/feature-1.html +283 -0
  23. data/_layouts/feature-download.html +309 -0
  24. data/_layouts/feature.html +1 -1
  25. data/_layouts/frame.html +205 -195
  26. data/_layouts/home-1.html +267 -0
  27. data/_layouts/home.html +4 -4
  28. data/_layouts/photo-effects-home.html +84 -0
  29. data/assets/css/batch.css +32 -17
  30. data/assets/css/blog-1.css +66 -0
  31. data/assets/css/calculators.css +40 -40
  32. data/assets/css/common-page.css +180 -0
  33. data/assets/css/feature-1.css +426 -0
  34. data/assets/css/frame.css +695 -473
  35. data/assets/css/home-1.css +225 -0
  36. data/assets/images/add.png +0 -0
  37. data/assets/images/add.svg +1 -0
  38. data/assets/images/bulb.png +0 -0
  39. data/assets/images/bulb.svg +1 -0
  40. data/assets/images/convert.png +0 -0
  41. data/assets/images/convert.svg +9 -0
  42. data/assets/images/loader.gif +0 -0
  43. data/assets/js/ads.js +8 -8
  44. data/assets/js/append-div.js +10 -10
  45. data/assets/js/batch.js +3 -1
  46. data/assets/js/frame.js +13 -5
  47. data/assets/js/photo-effects.json +32 -21
  48. data/assets/js/testing-batch.js +12 -4
  49. data/assets/js/theme.js +11 -11
  50. metadata +24 -7
data/_layouts/frame.html CHANGED
@@ -1,196 +1,206 @@
1
- ---
2
- layout: feature
3
- ---
4
-
5
- {%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
6
- <div class="container mt-4">
7
- <div class="col-md-11 mx-auto">
8
- <div class="row">
9
- <div class="col-md-3">
10
- <div class="categories-section">
11
- </div>
12
- <div class="categories-list">
13
- <div class="accordion" id="accordionExample">
14
- {%- for item in site.data.photo-categories -%}
15
- <div class="card">
16
- <div class="card-header" id="heading-{{forloop.index}}">
17
- <h3 class="mb-0">
18
- <button class="btn btn-block text-left p-0" type="button" data-toggle="collapse"
19
- data-target="#collapse-{{forloop.index}}" aria-expanded="true"
20
- aria-controls="collapse-{{forloop.index}}">
21
- {{item.category}}
22
- </button>
23
- </h3>
24
- </div>
25
-
26
- <div id="collapse-{{forloop.index}}" class="collapse"
27
- aria-labelledby="heading-{{forloop.index}}" data-parent="#accordionExample">
28
- <div class="card-body">
29
- {%- for i in item.features -%}
30
- <a href="{{i.link}}">{{i.name}}</a>
31
- {%- endfor -%}
32
- </div>
33
- </div>
34
- </div>
35
- {%- endfor -%}
36
- </div>
37
- </div>
38
-
39
- </div>
40
- <div class="col-md-9">
41
- <div class="row">
42
- <div class="col-md-8">
43
- <div class="flex-container pb-3">
44
- <div class="flex-class py-4 mt-4 mt-md-0 ">
45
- <div class="d-flex justify-content-center align-items-center">
46
- {%- assign frameh1 = fileData.H1 | replace: "$variable", page.value -%}
47
- <h1 class="frame-h1">{%- for word in frameh1-%}
48
- {%- if forloop.first == true -%}
49
- {{word | capitalize }}
50
- {%- else -%}
51
- {{word}}
52
- {%- endif -%}
53
- {%- endfor -%}</h1>
54
- </div>
55
- {%- assign frameh2 = fileData.H2 | replace: "$variable", page.value -%}
56
- <h2 class="frame-h2">
57
- {%- for word in frameh2 -%}
58
- {%- if forloop.first == true -%}
59
- {{word | capitalize }}
60
- {%- else -%}
61
- {{word}}
62
- {%- endif -%}
63
- {%- endfor -%}
64
- </h2>
65
- </div>
66
- </div>
67
- <div class="preview-section">
68
- <img src="{{fileData.mainPreviewImage}}" alt="">
69
- </div>
70
- <h3>Examples</h3>
71
- <div class="image-samples" onclick="openExamplesModal()">
72
- {%- for item in fileData.imageSamples -%}
73
- <img src="{{item}}" alt="sample">
74
- {%- endfor -%}
75
- </div>
76
-
77
- </div>
78
- <div class="col-md-4">
79
- <form id="effect-form" data-feature-name="{{page.featureName}}">
80
- {%- for item in fileData.elements -%}
81
- {%- if item.type == "image" -%}
82
- <label for="{{item.id}}">{{item.label}}</label>
83
- <button type="button" id="{{item.id}}" data-index="{{forloop.index}}"
84
- onclick="clickInput(this)">Choose
85
- image</button>
86
- <input class="d-none" id="file-{{forloop.index}}" type="file" onchange="fileOnChange(this)"
87
- data-index="{{forloop.index}}" accept=".webp,.png,.jpg,.jpeg" required />
88
- {%- endif -%}
89
- {%- if item.type == "text" -%}
90
- <label for="{{item.id}}">{{item.label}}</label>
91
- <input type="text" id="{{item.id}}">
92
- {%- endif -%}
93
- {%- endfor -%}
94
- <div>
95
- <button type="submit">Go</button>
96
- </div>
97
- </form>
98
- </div>
99
- </div>
100
-
101
- <div class="crop-image-modal-container">
102
- <div class="row w-100">
103
- <div class="crop-image-modal col-lg-6 col-md-8 mx-auto">
104
- <div class="crop-image-modal-header" style="background-color:{{fileData.color}} ;">
105
- <div>Select an area you would like to use</div>
106
- <div>
107
- <button onclick="closeModal()">
108
- <i class="fas fa-times"></i>
109
- </button>
110
- </div>
111
- </div>
112
- <div class="crop-image-modal-body">
113
-
114
- </div>
115
- <div class="crop-btn-section">
116
- <button id="crop" class="mx-auto my-3"
117
- style="background-color: {{fileData.color}};">crop</button>
118
- </div>
119
- </div>
120
- </div>
121
- </div>
122
- <div class="example-images-modal-container">
123
- <div class="row w-100">
124
- <div class="example-images-modal col-lg-6 col-md-8 mx-auto">
125
- <div class="crop-image-modal-header" style="background-color:{{fileData.color}} ;">
126
- <div>Examples</div>
127
- <div>
128
- <button onclick="closeExamplesModal()">
129
- <i class="fas fa-times"></i>
130
- </button>
131
- </div>
132
- </div>
133
- <div class="example-images-modal-body">
134
- <div id="carouselExampleFade" class="carousel slide carousel-fade" data-ride="carousel">
135
- <div class="carousel-inner w-75 mx-auto">
136
- {%- for item in fileData.imageSamples -%}
137
- {%- if forloop.index == 1 -%}
138
- <div class="carousel-item active">
139
- <img src="{{item}}" class="d-block w-100" alt="{{item}}">
140
- </div>
141
- {%- endif -%}
142
- <div class="carousel-item">
143
- <img src="{{item}}" class="d-block w-100" alt="{{item}}">
144
- </div>
145
- {%- endfor -%}
146
- </div>
147
- <button class="carousel-control-prev" type="button"
148
- data-target="#carouselExampleFade" data-slide="prev">
149
- <span class="carousel-control-prev-icon" aria-hidden="true"></span>
150
- <span class="sr-only">Previous</span>
151
- </button>
152
- <button class="carousel-control-next" type="button"
153
- data-target="#carouselExampleFade" data-slide="next">
154
- <span class="carousel-control-next-icon" aria-hidden="true"></span>
155
- <span class="sr-only">Next</span>
156
- </button>
157
- </div>
158
- </div>
159
-
160
- </div>
161
- </div>
162
- </div>
163
- <div id="workspace" data-name="together_forever" style="display: none;">
164
- <div class="row">
165
- <div class="col-md-8 mx-auto">
166
- <div class="select-img-panel">
167
- <div id="saving-data" style="display: none;">
168
- <img loading="lazy" src="/img/save.gif" alt="saving"> <span class="ml-2">Saving your
169
- images...</span>
170
- </div>
171
- <div id="canvas-panel">
172
- </div>
173
- </div>
174
- </div>
175
- <div class="col-md-4">
176
- <div class="options-panel">
177
- <div class="title">
178
-
179
- </div>
180
- <div class="download-wrapper">
181
- <button id="download-button" style="background-color: {{fileData.color}};"><svg
182
- xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
183
- <path
184
- 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" />
185
- </svg>Download</button>
186
- </div>
187
- </div>
188
-
189
- </div>
190
- </div>
191
- </div>
192
- </div>
193
- </div>
194
- </div>
195
-
1
+ ---
2
+ layout: feature
3
+ ---
4
+
5
+ {%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
6
+ <div class="container mt-4">
7
+ <div class="col-md-11 mx-auto">
8
+ <div class="row">
9
+ <div class="col-md-3">
10
+ <div class="categories-section">
11
+ </div>
12
+ <div class="categories-list">
13
+ <div class="accordion" id="accordionExample">
14
+ {%- for item in site.data.photo-categories -%}
15
+ <div class="card card-hover">
16
+ <div class="card-header" id="heading-{{forloop.index}}">
17
+ <button class="btn btn-block text-left p-0" type="button" data-toggle="collapse"
18
+ data-target="#collapse-{{forloop.index}}" aria-expanded="true"
19
+ aria-controls="collapse-{{forloop.index}}">
20
+ {{item.category}} <i class="fas fa-angle-down"></i>
21
+ </button>
22
+ </div>
23
+
24
+ <div id="collapse-{{forloop.index}}" class="collapse"
25
+ aria-labelledby="heading-{{forloop.index}}" data-parent="#accordionExample">
26
+ <div class="card-body">
27
+ {%- for i in item.features -%}
28
+ <a href="{{i.link}}">{{i.name}} </a>
29
+ {%- endfor -%}
30
+ </div>
31
+ </div>
32
+ </div>
33
+ {%- endfor -%}
34
+ </div>
35
+ </div>
36
+
37
+ </div>
38
+ <div class="col-md-9">
39
+ <div class="row" id="upper-panel">
40
+ <div class="col-md-8">
41
+ <div>
42
+ <div>
43
+ <div>
44
+ {%- assign frameh1 = fileData.H1 | replace: "$variable", page.value -%}
45
+ <h1 class="frame-h1">{%- for word in frameh1-%}
46
+ {%- if forloop.first == true -%}
47
+ {{word | capitalize }}
48
+ {%- else -%}
49
+ {{word}}
50
+ {%- endif -%}
51
+ {%- endfor -%}</h1>
52
+ </div>
53
+ {%- assign frameh2 = fileData.H2 | replace: "$variable", page.value -%}
54
+ <h2 class="frame-h2">
55
+ {%- for word in frameh2 -%}
56
+ {%- if forloop.first == true -%}
57
+ {{word | capitalize }}
58
+ {%- else -%}
59
+ {{word}}
60
+ {%- endif -%}
61
+ {%- endfor -%}
62
+ </h2>
63
+ </div>
64
+ </div>
65
+ <div class="preview-section">
66
+ <img src="{{fileData.mainPreviewImage}}" alt="">
67
+ </div>
68
+ <h3 id="example-h3">Examples</h3>
69
+ <div class="image-samples" onclick="openExamplesModal()">
70
+ {%- for item in fileData.imageSamples -%}
71
+ <img src="{{item}}" alt="sample">
72
+ {%- endfor -%}
73
+ </div>
74
+
75
+ </div>
76
+ <div class="col-md-4">
77
+ <form id="effect-form" data-feature-name="{{page.featureName}}">
78
+ {%- for item in fileData.elements -%}
79
+ {%- if item.type == "image" -%}
80
+ <label for="{{item.id}}">{{item.label}}</label>
81
+ <div class="d-flex mb-15">
82
+ <button class="choose-image" type="button" id="{{item.id}}"
83
+ data-index="{{forloop.index}}" onclick="clickInput(this)">Choose
84
+ image</button>
85
+ <button class="cam-image" id="cam-{{forloop.index}}"><i
86
+ class="fas fa-camera"></i></button>
87
+ <img class="small-image-preview" style="display: none;"
88
+ id="image-pre-{{forloop.index}}"></img>
89
+ </div>
90
+ <input class="d-none" id="file-{{forloop.index}}" type="file" onchange="fileOnChange(this)"
91
+ data-index="{{forloop.index}}" accept=".webp,.png,.jpg,.jpeg" required />
92
+ {%- endif -%}
93
+ {%- if item.type == "text" -%}
94
+ <label for="{{item.id}}">{{item.label}}</label>
95
+ <input class="mb-15" type="text" placeholder="Your Text" id="{{item.id}}">
96
+ {%- endif -%}
97
+ {%- endfor -%}
98
+ <div class="d-flex">
99
+ <button class="submit-btn" type="submit">Go</button>
100
+ </div>
101
+ </form>
102
+ </div>
103
+ </div>
104
+ <div class="row">
105
+ <div id="workspace" data-name="together_forever" style="display: none;">
106
+ <div class="row">
107
+ <div class="col-12 mb-4">
108
+ <div class="d-flex justify-content-between">
109
+ <div class="result-info">
110
+ <a href="{{page.permalink}}" target="_blank">{{page.featureName}}</a>
111
+ <i class="fas fa-chevron-right"></i>
112
+ <div>result</div>
113
+ </div>
114
+ <button id="download-button" style="background-color: {{fileData.color}};"><svg
115
+ xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
116
+ <path
117
+ 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" />
118
+ </svg>Download</button>
119
+ </div>
120
+
121
+ </div>
122
+ <div class="col-md-12 mx-auto">
123
+ <div class="select-img-panel">
124
+ <div id="saving-data" style="display: block;">
125
+ <img loading="lazy" src="/assets/images/loader.gif" alt="saving"> <span
126
+ class="ml-2">Saving
127
+ your
128
+ images...</span>
129
+ </div>
130
+ <div id="canvas-panel">
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ </div>
136
+ </div>
137
+ </div>
138
+
139
+ <div class="crop-image-modal-container">
140
+ <div class="row w-100">
141
+ <div class="crop-image-modal col-lg-6 col-md-8 mx-auto">
142
+ <div class="crop-image-modal-header" style="background-color:{{fileData.color}} ;">
143
+ <div>Select an area you would like to use</div>
144
+ <div>
145
+ <button onclick="closeModal()">
146
+ <i class="fas fa-times"></i>
147
+ </button>
148
+ </div>
149
+ </div>
150
+ <div class="crop-image-modal-body">
151
+
152
+ </div>
153
+ <div class="crop-btn-section">
154
+ <button id="crop" class="mx-auto my-3"
155
+ style="background-color: {{fileData.color}};">crop</button>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ <div class="example-images-modal-container">
161
+ <div class="row w-100">
162
+ <div class="example-images-modal col-lg-6 col-md-8 mx-auto">
163
+ <div class="crop-image-modal-header" style="background-color:{{fileData.color}} ;">
164
+ <div>Examples</div>
165
+ <div>
166
+ <button onclick="closeExamplesModal()">
167
+ <i class="fas fa-times"></i>
168
+ </button>
169
+ </div>
170
+ </div>
171
+ <div class="example-images-modal-body">
172
+ <div id="carouselExampleFade" class="carousel slide carousel-fade" data-ride="carousel">
173
+ <div class="carousel-inner w-75 mx-auto">
174
+ {%- for item in fileData.imageSamples -%}
175
+ {%- if forloop.index == 1 -%}
176
+ <div class="carousel-item active">
177
+ <img src="{{item}}" class="d-block w-100" alt="{{item}}">
178
+ </div>
179
+ {%- endif -%}
180
+ <div class="carousel-item">
181
+ <img src="{{item}}" class="d-block w-100" alt="{{item}}">
182
+ </div>
183
+ {%- endfor -%}
184
+ </div>
185
+ <button class="carousel-control-prev" type="button"
186
+ data-target="#carouselExampleFade" data-slide="prev">
187
+ <span class="carousel-control-prev-icon" aria-hidden="true"></span>
188
+ <span class="sr-only">Previous</span>
189
+ </button>
190
+ <button class="carousel-control-next" type="button"
191
+ data-target="#carouselExampleFade" data-slide="next">
192
+ <span class="carousel-control-next-icon" aria-hidden="true"></span>
193
+ <span class="sr-only">Next</span>
194
+ </button>
195
+ </div>
196
+ </div>
197
+
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ </div>
203
+ </div>
204
+ </div>
205
+
196
206
  </div>