appscms-tools-theme 2.3.1 → 2.3.4

Sign up to get free protection for your applications and to get access to all the features.
data/_layouts/frame.html CHANGED
@@ -1,206 +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 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
-
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
+
206
206
  </div>
@@ -0,0 +1,112 @@
1
+ ---
2
+ layout: feature
3
+ ---
4
+
5
+
6
+
7
+ <div class="container">
8
+ {%- assign pageData = site.data[page.folderName][page.lang][page.fileName] -%}
9
+ <div class="custom-box" style="background-color:{{pageData.color}};">
10
+ <div class="inner-box">
11
+ <div style="display:none;" id="file-loader"><img src="/spinner.gif" alt="">
12
+ <p>Please Wait ,Loading Your file </p>
13
+ </div>
14
+ <div class="saving-file-download-wrap" style="display: none;">
15
+ <img loading="lazy" class="trust-img" src="/trust.svg" alt="trust">
16
+ <p class="text-white my-2">Thanks for your patience</p>
17
+ <button class="btn" id="download-zip">Download</button>
18
+ </div>
19
+ <div class="file-input">
20
+ <div class="mb-4 d-flex justify-content-center">
21
+ <svg xmlns="http://www.w3.org/2000/svg" id="img-svg" viewBox="0 0 96 60">
22
+ <path fill="white"
23
+ d="M61.9655252,3.24869071 L61.9765763,3.41278068 L62.045,5.866 L73.2405238,6.25793424 C74.5651997,6.30419294 75.6130942,7.37295092 75.6521743,8.67919891 L75.6517521,8.84366004 L73.9765763,56.8144197 C73.9303176,58.1390957 72.8615596,59.1869902 71.5553116,59.2260703 L71.3908505,59.2256481 L68.3103384,59.1184351 C68.0464245,59.8400339 67.3786666,60.3670921 66.5807111,60.425963 L66.4314488,60.4314488 L66.4314488,60.4314488 L30.4314488,60.4314488 C29.3268793,60.4314488 28.4314488,59.5360183 28.4314488,58.4314488 L28.431,55.114 L25.262454,55.2256481 C23.9377781,55.2719068 22.8178834,54.2788497 22.6877793,52.9785097 L22.6767282,52.8144197 L21.0015524,4.84366004 C20.9552937,3.51898409 21.9483508,2.39908942 23.2486907,2.2689853 L23.4127807,2.25793424 L59.3908505,1.00155235 C60.7155264,0.955293651 61.8354211,1.94835077 61.9655252,3.24869071 Z M54.2794488,39.4234488 L45.0024366,47.6809882 L40.7104488,42.4274488 L29.431,51.895 L29.4314488,58.4314488 C29.4314488,58.9442846 29.817489,59.3669559 30.3148276,59.424721 L30.4314488,59.4314488 L66.4314488,59.4314488 C66.9442846,59.4314488 67.3669559,59.0454086 67.424721,58.5480699 L67.4314488,58.4314488 L67.4304488,52.8324488 L54.2794488,39.4234488 Z M37.2275545,6.00094318 C36.4483334,5.97373218 35.7872098,6.54589593 35.688023,7.30354781 L35.676119,7.44768018 L35.676,8.431 L60.4314488,8.43144877 L68.4314488,16.4314488 L68.431,58.121 L71.4257499,58.2262572 C72.2049711,58.2534682 72.8660946,57.6813045 72.9652815,56.9236526 L72.9771854,56.7795202 L74.6523613,8.80876055 C74.6795723,8.0295394 74.1074085,7.36841587 73.3497567,7.26922904 L73.2056243,7.25732506 L37.2275545,6.00094318 Z M59.4257499,2.00094318 L23.4476802,3.25732506 C22.668459,3.28453606 22.0488581,3.9014237 22.002764,4.6641489 L22.0009432,4.80876055 L23.676119,52.7795202 C23.70333,53.5587414 24.3202177,54.1783423 25.0829429,54.2244364 L25.2275545,54.2262572 L28.431,54.114 L28.4314488,10.4314488 C28.4314488,9.32687927 29.3268793,8.43144877 30.4314488,8.43144877 L34.611,8.431 L34.6767282,7.41278068 C34.7229869,6.08810473 35.7917449,5.04021022 37.0979929,5.00113017 L37.262454,5.00155235 L61.045,5.831 L60.9771854,3.44768018 C60.9499744,2.66845903 60.3330868,2.04885809 59.5703616,2.00276399 L59.4257499,2.00094318 Z M59.431,9.431 L30.4314488,9.43144877 C29.9186129,9.43144877 29.4959416,9.81748896 29.4381765,10.3148276 L29.4314488,10.4314488 L29.431,50.591 L40.8439098,41.010846 L45.1168036,46.2404726 L54.3266522,38.0432874 L67.431,51.405 L67.431,17.431 L59.4314488,17.4314488 L59.431,9.431 Z M58.4314488,26.4314488 C60.088303,26.4314488 61.4314488,27.7745945 61.4314488,29.4314488 C61.4314488,31.088303 60.088303,32.4314488 58.4314488,32.4314488 C56.7745945,32.4314488 55.4314488,31.088303 55.4314488,29.4314488 C55.4314488,27.7745945 56.7745945,26.4314488 58.4314488,26.4314488 Z M60.431,9.846 L60.431,16.431 L67.016,16.431 L60.431,9.846 Z">
24
+ </path>
25
+ </svg>
26
+ </div>
27
+ <div class="d-flex justify-content-center align-items-center ">
28
+ <div id="Inputbox" class="boxes"> <img height="22px" class="mr-1" width="22px"
29
+ src="/assets/images/addimg.svg" />
30
+ <span class='ml-1'>CHOOSE FILE</span>
31
+ </div>
32
+ <div class="file-pick-dropdown">
33
+ <i class="fas fa-angle-down arrow-sign "></i>
34
+ <div class="file-picker-dropdown" style="display: none;">
35
+ <button id="dropbox"> <svg viewBox="0 0 24 24" fill="#0061FF"
36
+ xmlns="http://www.w3.org/2000/svg">
37
+ <path id="icon"
38
+ d="M12.0146 6.57367L6.50732 10.1473L12.0146 13.721L6.50732 17.2947L1 13.6912L6.50732 10.1176L1 6.57367L6.50732 3L12.0146 6.57367ZM6.47803 18.4263L11.9854 14.8527L17.4927 18.4263L11.9854 22L6.47803 18.4263ZM12.0146 13.6912L17.522 10.1176L12.0146 6.57367L17.4927 3L23 6.57367L17.4927 10.1473L23 13.721L17.4927 17.2947L12.0146 13.6912Z">
39
+ </path>
40
+ </svg> From Dropbox</button>
41
+ <button id='filepicker'> <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
42
+ <path id="Path" d="M8.33331 3H15.6666L23 15H15.6666L8.33331 3Z" fill="#FFC107">
43
+ </path>
44
+ <path id="Path_2" d="M4.6012 21L8.30086 15H23L19.3333 21H4.6012Z" fill="#1976D2">
45
+ </path>
46
+ <path id="Path_3" d="M1 15.0625L4.60119 21L12 9L8.33333 3L1 15.0625Z"
47
+ fill="#4CAF50">
48
+ </path>
49
+ </svg> From Google Drive</button>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ <p id="dropfile">or drop your file here</p>
54
+ </div>
55
+ </div>
56
+ </div>
57
+
58
+ <div class="workspace" style="display: none;">
59
+ <div class="row">
60
+ <div class="col-12">
61
+ <div class="download-wrapper mt-3">
62
+ <div class="d-flex align-items-center justify-content-center">
63
+ <div class="select-format-title">image's format</div>
64
+ <div class="download-format">
65
+ <select name="image-format" id="image-format">
66
+ <option value="png">png</option>
67
+ <option value="jpg">jpg</option>
68
+ <option value="jpeg">jpeg</option>
69
+ <option value="webp">webp</option>
70
+ <option value="gif">gif</option>
71
+ </select>
72
+ </div>
73
+ </div>
74
+ <div>
75
+ <button id="download-button" style="background-color: {{pageData.color}};"><svg
76
+ xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
77
+ <path
78
+ 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" />
79
+ </svg>Download</button>
80
+ </div>
81
+ </div>
82
+
83
+ </div>
84
+ </div>
85
+ {%- if page.commonStructure != false -%}
86
+ <div class="row">
87
+ <div class="col-md-8 mx-auto">
88
+ <div class="select-img-panel">
89
+ <div id="saving-data">
90
+ <img loading="lazy" src="/assets/images/loader.gif" alt="saving"> <span class="ml-2">Saving your
91
+ images...</span>
92
+ </div>
93
+ <div id="pixel-box-panel">
94
+ <canvas id="pixelitcanvas"></canvas>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ <div class="col-md-4">
99
+ <div class="options-panel">
100
+ <div class="title">
101
+ {{pageData.optionPanelTitle}}
102
+ </div>
103
+ {{content}}
104
+ </div>
105
+ </div>
106
+ </div>
107
+ {%- else -%}
108
+ {{content}}
109
+ {%- endif -%}
110
+ </div>
111
+
112
+ </div>