easyorders 0.1.14 → 0.1.15
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.
- package/README.md +93 -93
- package/dist/bin/cli.js +12 -5
- package/dist/template/theme/config.json +95 -95
- package/dist/template/theme/home-sections/category-mosaic/config.json +40 -40
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +155 -155
- package/dist/template/theme/home-sections/editorial-feature/config.json +67 -67
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +153 -153
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +60 -60
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +144 -144
- package/dist/template/theme/home-sections/runway-hero/config.json +91 -91
- package/dist/template/theme/home-sections/runway-hero/template.liquid +159 -159
- package/dist/template/theme/home-sections/shop-the-look/config.json +75 -75
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +304 -304
- package/dist/template/theme/home-sections/trust-promise/config.json +47 -47
- package/dist/template/theme/home-sections/trust-promise/template.liquid +96 -96
- package/dist/template/theme/schema.json +151 -151
- package/dist/template/theme/script.js +586 -586
- package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
- package/dist/template/theme/sections/categories.liquid +9 -9
- package/dist/template/theme/sections/fake-counter.liquid +27 -27
- package/dist/template/theme/sections/fake-stock.liquid +6 -6
- package/dist/template/theme/sections/fake-visitor.liquid +6 -6
- package/dist/template/theme/sections/featured-products.liquid +110 -110
- package/dist/template/theme/sections/fixed-buy-button.liquid +46 -46
- package/dist/template/theme/sections/footer.liquid +128 -128
- package/dist/template/theme/sections/gallery.liquid +61 -61
- package/dist/template/theme/sections/header.liquid +152 -152
- package/dist/template/theme/sections/home-products-grid.liquid +109 -109
- package/dist/template/theme/sections/list-products.liquid +93 -93
- package/dist/template/theme/sections/order-invoice.liquid +154 -154
- package/dist/template/theme/sections/product-description.liquid +30 -30
- package/dist/template/theme/sections/product-details.liquid +63 -63
- package/dist/template/theme/sections/products-grid.liquid +86 -86
- package/dist/template/theme/sections/related-products.liquid +88 -88
- package/dist/template/theme/sections/reviews.liquid +55 -55
- package/dist/template/theme/sections/slider.liquid +43 -43
- package/dist/template/theme/sections/thanks.liquid +33 -33
- package/dist/template/theme/style.css +3923 -3923
- package/dist/template/theme/theme-data.json +9 -9
- package/package.json +40 -40
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
<section class="ab-slider" data-autoplay="5000">
|
|
2
|
-
<div class="ab-slider-track">
|
|
3
|
-
{% for slide in slides %}
|
|
4
|
-
{% if slide.url != blank %}
|
|
5
|
-
<a
|
|
6
|
-
href="{{ slide.url }}"
|
|
7
|
-
class="ab-slider-slide{% if forloop.first %} ab-active{% endif %}"
|
|
8
|
-
aria-label="{{ slide.alt | default: "Slide image" }}"
|
|
9
|
-
>
|
|
10
|
-
<picture>
|
|
11
|
-
{% if slide.mobile_image != blank %}
|
|
12
|
-
<source media="(max-width: 425px)" srcset="{{ slide.mobile_image }}" />
|
|
13
|
-
<source media="(min-width: 426px)" srcset="{{ slide.image }}" />
|
|
14
|
-
{% endif %}
|
|
15
|
-
<img src="{{ slide.image }}" alt="{{ slide.alt | default: "Slide image" }}" loading="{% if forloop.first %}eager{% else %}lazy{% endif %}" />
|
|
16
|
-
</picture>
|
|
17
|
-
</a>
|
|
18
|
-
{% else %}
|
|
19
|
-
<div class="ab-slider-slide{% if forloop.first %} ab-active{% endif %}" aria-label="{{ slide.alt | default: "Slide image" }}">
|
|
20
|
-
<picture>
|
|
21
|
-
{% if slide.mobile_image != blank %}
|
|
22
|
-
<source media="(max-width: 425px)" srcset="{{ slide.mobile_image }}" />
|
|
23
|
-
<source media="(min-width: 426px)" srcset="{{ slide.image }}" />
|
|
24
|
-
{% endif %}
|
|
25
|
-
<img src="{{ slide.image }}" alt="{{ slide.alt | default: "Slide image" }}" loading="{% if forloop.first %}eager{% else %}lazy{% endif %}" />
|
|
26
|
-
</picture>
|
|
27
|
-
</div>
|
|
28
|
-
{% endif %}
|
|
29
|
-
{% endfor %}
|
|
30
|
-
</div>
|
|
31
|
-
|
|
32
|
-
{% if slides.size > 1 %}
|
|
33
|
-
<div class="ab-slider-controls">
|
|
34
|
-
<div class="ab-slider-progress">
|
|
35
|
-
<span class="ab-slider-progress-bar"></span>
|
|
36
|
-
</div>
|
|
37
|
-
<button class="ab-slider-pause" aria-label="Pause slideshow">
|
|
38
|
-
<svg class="ab-slider-icon-pause" viewBox="0 0 24 24" fill="currentColor"><rect x="6" y="4" width="4" height="16"/><rect x="14" y="4" width="4" height="16"/></svg>
|
|
39
|
-
<svg class="ab-slider-icon-play" viewBox="0 0 24 24" fill="currentColor"><polygon points="6,4 20,12 6,20"/></svg>
|
|
40
|
-
</button>
|
|
41
|
-
</div>
|
|
42
|
-
{% endif %}
|
|
43
|
-
</section>
|
|
1
|
+
<section class="ab-slider" data-autoplay="5000">
|
|
2
|
+
<div class="ab-slider-track">
|
|
3
|
+
{% for slide in slides %}
|
|
4
|
+
{% if slide.url != blank %}
|
|
5
|
+
<a
|
|
6
|
+
href="{{ slide.url }}"
|
|
7
|
+
class="ab-slider-slide{% if forloop.first %} ab-active{% endif %}"
|
|
8
|
+
aria-label="{{ slide.alt | default: "Slide image" }}"
|
|
9
|
+
>
|
|
10
|
+
<picture>
|
|
11
|
+
{% if slide.mobile_image != blank %}
|
|
12
|
+
<source media="(max-width: 425px)" srcset="{{ slide.mobile_image }}" />
|
|
13
|
+
<source media="(min-width: 426px)" srcset="{{ slide.image }}" />
|
|
14
|
+
{% endif %}
|
|
15
|
+
<img src="{{ slide.image }}" alt="{{ slide.alt | default: "Slide image" }}" loading="{% if forloop.first %}eager{% else %}lazy{% endif %}" />
|
|
16
|
+
</picture>
|
|
17
|
+
</a>
|
|
18
|
+
{% else %}
|
|
19
|
+
<div class="ab-slider-slide{% if forloop.first %} ab-active{% endif %}" aria-label="{{ slide.alt | default: "Slide image" }}">
|
|
20
|
+
<picture>
|
|
21
|
+
{% if slide.mobile_image != blank %}
|
|
22
|
+
<source media="(max-width: 425px)" srcset="{{ slide.mobile_image }}" />
|
|
23
|
+
<source media="(min-width: 426px)" srcset="{{ slide.image }}" />
|
|
24
|
+
{% endif %}
|
|
25
|
+
<img src="{{ slide.image }}" alt="{{ slide.alt | default: "Slide image" }}" loading="{% if forloop.first %}eager{% else %}lazy{% endif %}" />
|
|
26
|
+
</picture>
|
|
27
|
+
</div>
|
|
28
|
+
{% endif %}
|
|
29
|
+
{% endfor %}
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
{% if slides.size > 1 %}
|
|
33
|
+
<div class="ab-slider-controls">
|
|
34
|
+
<div class="ab-slider-progress">
|
|
35
|
+
<span class="ab-slider-progress-bar"></span>
|
|
36
|
+
</div>
|
|
37
|
+
<button class="ab-slider-pause" aria-label="Pause slideshow">
|
|
38
|
+
<svg class="ab-slider-icon-pause" viewBox="0 0 24 24" fill="currentColor"><rect x="6" y="4" width="4" height="16"/><rect x="14" y="4" width="4" height="16"/></svg>
|
|
39
|
+
<svg class="ab-slider-icon-play" viewBox="0 0 24 24" fill="currentColor"><polygon points="6,4 20,12 6,20"/></svg>
|
|
40
|
+
</button>
|
|
41
|
+
</div>
|
|
42
|
+
{% endif %}
|
|
43
|
+
</section>
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
<div class="ab-thanks">
|
|
2
|
-
<div class="ab-thanks-content">
|
|
3
|
-
{% if content and content != "" %}
|
|
4
|
-
<div class="ab-thanks-custom-content">{{ content }}</div>
|
|
5
|
-
{% else %}
|
|
6
|
-
<div class="ab-thanks-default">
|
|
7
|
-
<div class="ab-thanks-icon" aria-hidden="true">
|
|
8
|
-
<svg viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg" width="80" height="80">
|
|
9
|
-
<circle cx="40" cy="40" r="38" stroke="currentColor" stroke-width="3"/>
|
|
10
|
-
<path d="M24 42l10 10 22-24" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
</svg>
|
|
12
|
-
</div>
|
|
13
|
-
<h1 class="ab-thanks-title">{{ thanks_title }}</h1>
|
|
14
|
-
<p class="ab-thanks-message">{{ thanks_message }}</p>
|
|
15
|
-
{% if phone_message and phone_message != "" %}
|
|
16
|
-
<p class="ab-thanks-phone-msg">{{ phone_message }}</p>
|
|
17
|
-
{% endif %}
|
|
18
|
-
</div>
|
|
19
|
-
{% endif %}
|
|
20
|
-
|
|
21
|
-
{% if show_home_button %}
|
|
22
|
-
<button
|
|
23
|
-
class="ab-thanks-home-btn"
|
|
24
|
-
type="button"
|
|
25
|
-
onclick="this.dispatchEvent(new CustomEvent('go-home',{bubbles:true}));"
|
|
26
|
-
>{{ go_home_text }}</button>
|
|
27
|
-
{% endif %}
|
|
28
|
-
|
|
29
|
-
{% if offers_text and offers_text != "" %}
|
|
30
|
-
<p class="ab-thanks-offers">{{ offers_text }}</p>
|
|
31
|
-
{% endif %}
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
1
|
+
<div class="ab-thanks">
|
|
2
|
+
<div class="ab-thanks-content">
|
|
3
|
+
{% if content and content != "" %}
|
|
4
|
+
<div class="ab-thanks-custom-content">{{ content }}</div>
|
|
5
|
+
{% else %}
|
|
6
|
+
<div class="ab-thanks-default">
|
|
7
|
+
<div class="ab-thanks-icon" aria-hidden="true">
|
|
8
|
+
<svg viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg" width="80" height="80">
|
|
9
|
+
<circle cx="40" cy="40" r="38" stroke="currentColor" stroke-width="3"/>
|
|
10
|
+
<path d="M24 42l10 10 22-24" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
</svg>
|
|
12
|
+
</div>
|
|
13
|
+
<h1 class="ab-thanks-title">{{ thanks_title }}</h1>
|
|
14
|
+
<p class="ab-thanks-message">{{ thanks_message }}</p>
|
|
15
|
+
{% if phone_message and phone_message != "" %}
|
|
16
|
+
<p class="ab-thanks-phone-msg">{{ phone_message }}</p>
|
|
17
|
+
{% endif %}
|
|
18
|
+
</div>
|
|
19
|
+
{% endif %}
|
|
20
|
+
|
|
21
|
+
{% if show_home_button %}
|
|
22
|
+
<button
|
|
23
|
+
class="ab-thanks-home-btn"
|
|
24
|
+
type="button"
|
|
25
|
+
onclick="this.dispatchEvent(new CustomEvent('go-home',{bubbles:true}));"
|
|
26
|
+
>{{ go_home_text }}</button>
|
|
27
|
+
{% endif %}
|
|
28
|
+
|
|
29
|
+
{% if offers_text and offers_text != "" %}
|
|
30
|
+
<p class="ab-thanks-offers">{{ offers_text }}</p>
|
|
31
|
+
{% endif %}
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|