easyorders 0.1.13 → 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,153 +1,153 @@
|
|
|
1
|
-
<section
|
|
2
|
-
class="editorial-feature editorial-feature--{{ section_data.surface | default: 'light' }} editorial-feature--img-{{ section_data.image_position | default: 'left' }}"
|
|
3
|
-
style="--ed-accent: {{ section_data.accent_color | default: '#8B7355' }};"
|
|
4
|
-
>
|
|
5
|
-
<div class="editorial-feature__grid">
|
|
6
|
-
<div class="editorial-feature__media">
|
|
7
|
-
{% if section_data.image != blank %}
|
|
8
|
-
<img
|
|
9
|
-
class="editorial-feature__img"
|
|
10
|
-
src="{{ section_data.image }}"
|
|
11
|
-
alt="{{ section_data.title | default: 'Feature' }}"
|
|
12
|
-
loading="lazy"
|
|
13
|
-
width="900"
|
|
14
|
-
height="1100"
|
|
15
|
-
/>
|
|
16
|
-
{% else %}
|
|
17
|
-
<div class="editorial-feature__placeholder" role="img" aria-label=""></div>
|
|
18
|
-
{% endif %}
|
|
19
|
-
</div>
|
|
20
|
-
<div class="editorial-feature__copy">
|
|
21
|
-
{% if section_data.eyebrow != blank %}
|
|
22
|
-
<p class="editorial-feature__eyebrow">{{ section_data.eyebrow }}</p>
|
|
23
|
-
{% endif %}
|
|
24
|
-
{% if section_data.title != blank %}
|
|
25
|
-
<h2 class="editorial-feature__title">{{ section_data.title }}</h2>
|
|
26
|
-
{% endif %}
|
|
27
|
-
{% if section_data.body != blank %}
|
|
28
|
-
<p class="editorial-feature__body">{{ section_data.body }}</p>
|
|
29
|
-
{% endif %}
|
|
30
|
-
{% if section_data.cta_label != blank %}
|
|
31
|
-
<a
|
|
32
|
-
class="editorial-feature__link"
|
|
33
|
-
href="#"
|
|
34
|
-
{% if section_data.cta_page_id != blank %}
|
|
35
|
-
data-eo-hs-cta="1"
|
|
36
|
-
data-eo-hs-cta-entity="pages"
|
|
37
|
-
data-eo-hs-cta-id="{{ section_data.cta_page_id }}"
|
|
38
|
-
{% endif %}
|
|
39
|
-
>
|
|
40
|
-
{{ section_data.cta_label }}
|
|
41
|
-
<span class="editorial-feature__link-arrow" aria-hidden="true">→</span>
|
|
42
|
-
</a>
|
|
43
|
-
{% endif %}
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
</section>
|
|
47
|
-
|
|
48
|
-
<style>
|
|
49
|
-
.editorial-feature {
|
|
50
|
-
padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem;
|
|
51
|
-
}
|
|
52
|
-
.editorial-feature--light {
|
|
53
|
-
background: #f6f3ee;
|
|
54
|
-
color: #1c1a17;
|
|
55
|
-
}
|
|
56
|
-
.editorial-feature--dark {
|
|
57
|
-
background: #121015;
|
|
58
|
-
color: #f4eee6;
|
|
59
|
-
}
|
|
60
|
-
.editorial-feature__grid {
|
|
61
|
-
max-width: 1120px;
|
|
62
|
-
margin: 0 auto;
|
|
63
|
-
display: grid;
|
|
64
|
-
gap: clamp(1.75rem, 4vw, 3rem);
|
|
65
|
-
align-items: center;
|
|
66
|
-
}
|
|
67
|
-
@media (min-width: 900px) {
|
|
68
|
-
.editorial-feature__grid {
|
|
69
|
-
grid-template-columns: 1.05fr 1fr;
|
|
70
|
-
}
|
|
71
|
-
.editorial-feature--img-right .editorial-feature__media {
|
|
72
|
-
order: 2;
|
|
73
|
-
}
|
|
74
|
-
.editorial-feature--img-right .editorial-feature__copy {
|
|
75
|
-
order: 1;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
.editorial-feature__media {
|
|
79
|
-
position: relative;
|
|
80
|
-
}
|
|
81
|
-
.editorial-feature__img {
|
|
82
|
-
width: 100%;
|
|
83
|
-
display: block;
|
|
84
|
-
border-radius: 4px;
|
|
85
|
-
object-fit: cover;
|
|
86
|
-
aspect-ratio: 4 / 5;
|
|
87
|
-
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
|
|
88
|
-
}
|
|
89
|
-
.editorial-feature--dark .editorial-feature__img {
|
|
90
|
-
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
|
|
91
|
-
}
|
|
92
|
-
.editorial-feature__placeholder {
|
|
93
|
-
width: 100%;
|
|
94
|
-
aspect-ratio: 4 / 5;
|
|
95
|
-
border-radius: 4px;
|
|
96
|
-
background: linear-gradient(145deg, rgba(139, 115, 85, 0.35), rgba(28, 26, 23, 0.08));
|
|
97
|
-
}
|
|
98
|
-
.editorial-feature--dark .editorial-feature__placeholder {
|
|
99
|
-
background: linear-gradient(145deg, rgba(201, 169, 98, 0.25), rgba(0, 0, 0, 0.4));
|
|
100
|
-
}
|
|
101
|
-
.editorial-feature__copy {
|
|
102
|
-
display: flex;
|
|
103
|
-
flex-direction: column;
|
|
104
|
-
gap: 1rem;
|
|
105
|
-
padding: 0.25rem 0;
|
|
106
|
-
}
|
|
107
|
-
.editorial-feature__eyebrow {
|
|
108
|
-
margin: 0;
|
|
109
|
-
font-size: 0.72rem;
|
|
110
|
-
letter-spacing: 0.28em;
|
|
111
|
-
text-transform: uppercase;
|
|
112
|
-
font-weight: 600;
|
|
113
|
-
color: var(--ed-accent, #8b7355);
|
|
114
|
-
}
|
|
115
|
-
.editorial-feature__title {
|
|
116
|
-
margin: 0;
|
|
117
|
-
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
118
|
-
font-weight: 500;
|
|
119
|
-
font-size: clamp(1.85rem, 4vw, 2.65rem);
|
|
120
|
-
line-height: 1.15;
|
|
121
|
-
}
|
|
122
|
-
.editorial-feature__body {
|
|
123
|
-
margin: 0;
|
|
124
|
-
font-size: 1.02rem;
|
|
125
|
-
line-height: 1.75;
|
|
126
|
-
opacity: 0.88;
|
|
127
|
-
max-width: 34rem;
|
|
128
|
-
}
|
|
129
|
-
.editorial-feature__link {
|
|
130
|
-
margin-top: 0.25rem;
|
|
131
|
-
display: inline-flex;
|
|
132
|
-
align-items: center;
|
|
133
|
-
gap: 0.5rem;
|
|
134
|
-
font-size: 0.82rem;
|
|
135
|
-
font-weight: 600;
|
|
136
|
-
letter-spacing: 0.18em;
|
|
137
|
-
text-transform: uppercase;
|
|
138
|
-
text-decoration: none;
|
|
139
|
-
color: var(--ed-accent, #8b7355);
|
|
140
|
-
border-bottom: 1px solid currentColor;
|
|
141
|
-
padding-bottom: 2px;
|
|
142
|
-
width: fit-content;
|
|
143
|
-
transition: gap 0.2s ease, opacity 0.2s ease;
|
|
144
|
-
}
|
|
145
|
-
.editorial-feature__link:hover {
|
|
146
|
-
gap: 0.65rem;
|
|
147
|
-
opacity: 0.85;
|
|
148
|
-
}
|
|
149
|
-
.editorial-feature__link-arrow {
|
|
150
|
-
font-size: 1rem;
|
|
151
|
-
line-height: 1;
|
|
152
|
-
}
|
|
153
|
-
</style>
|
|
1
|
+
<section
|
|
2
|
+
class="editorial-feature editorial-feature--{{ section_data.surface | default: 'light' }} editorial-feature--img-{{ section_data.image_position | default: 'left' }}"
|
|
3
|
+
style="--ed-accent: {{ section_data.accent_color | default: '#8B7355' }};"
|
|
4
|
+
>
|
|
5
|
+
<div class="editorial-feature__grid">
|
|
6
|
+
<div class="editorial-feature__media">
|
|
7
|
+
{% if section_data.image != blank %}
|
|
8
|
+
<img
|
|
9
|
+
class="editorial-feature__img"
|
|
10
|
+
src="{{ section_data.image }}"
|
|
11
|
+
alt="{{ section_data.title | default: 'Feature' }}"
|
|
12
|
+
loading="lazy"
|
|
13
|
+
width="900"
|
|
14
|
+
height="1100"
|
|
15
|
+
/>
|
|
16
|
+
{% else %}
|
|
17
|
+
<div class="editorial-feature__placeholder" role="img" aria-label=""></div>
|
|
18
|
+
{% endif %}
|
|
19
|
+
</div>
|
|
20
|
+
<div class="editorial-feature__copy">
|
|
21
|
+
{% if section_data.eyebrow != blank %}
|
|
22
|
+
<p class="editorial-feature__eyebrow">{{ section_data.eyebrow }}</p>
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% if section_data.title != blank %}
|
|
25
|
+
<h2 class="editorial-feature__title">{{ section_data.title }}</h2>
|
|
26
|
+
{% endif %}
|
|
27
|
+
{% if section_data.body != blank %}
|
|
28
|
+
<p class="editorial-feature__body">{{ section_data.body }}</p>
|
|
29
|
+
{% endif %}
|
|
30
|
+
{% if section_data.cta_label != blank %}
|
|
31
|
+
<a
|
|
32
|
+
class="editorial-feature__link"
|
|
33
|
+
href="#"
|
|
34
|
+
{% if section_data.cta_page_id != blank %}
|
|
35
|
+
data-eo-hs-cta="1"
|
|
36
|
+
data-eo-hs-cta-entity="pages"
|
|
37
|
+
data-eo-hs-cta-id="{{ section_data.cta_page_id }}"
|
|
38
|
+
{% endif %}
|
|
39
|
+
>
|
|
40
|
+
{{ section_data.cta_label }}
|
|
41
|
+
<span class="editorial-feature__link-arrow" aria-hidden="true">→</span>
|
|
42
|
+
</a>
|
|
43
|
+
{% endif %}
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</section>
|
|
47
|
+
|
|
48
|
+
<style>
|
|
49
|
+
.editorial-feature {
|
|
50
|
+
padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem;
|
|
51
|
+
}
|
|
52
|
+
.editorial-feature--light {
|
|
53
|
+
background: #f6f3ee;
|
|
54
|
+
color: #1c1a17;
|
|
55
|
+
}
|
|
56
|
+
.editorial-feature--dark {
|
|
57
|
+
background: #121015;
|
|
58
|
+
color: #f4eee6;
|
|
59
|
+
}
|
|
60
|
+
.editorial-feature__grid {
|
|
61
|
+
max-width: 1120px;
|
|
62
|
+
margin: 0 auto;
|
|
63
|
+
display: grid;
|
|
64
|
+
gap: clamp(1.75rem, 4vw, 3rem);
|
|
65
|
+
align-items: center;
|
|
66
|
+
}
|
|
67
|
+
@media (min-width: 900px) {
|
|
68
|
+
.editorial-feature__grid {
|
|
69
|
+
grid-template-columns: 1.05fr 1fr;
|
|
70
|
+
}
|
|
71
|
+
.editorial-feature--img-right .editorial-feature__media {
|
|
72
|
+
order: 2;
|
|
73
|
+
}
|
|
74
|
+
.editorial-feature--img-right .editorial-feature__copy {
|
|
75
|
+
order: 1;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
.editorial-feature__media {
|
|
79
|
+
position: relative;
|
|
80
|
+
}
|
|
81
|
+
.editorial-feature__img {
|
|
82
|
+
width: 100%;
|
|
83
|
+
display: block;
|
|
84
|
+
border-radius: 4px;
|
|
85
|
+
object-fit: cover;
|
|
86
|
+
aspect-ratio: 4 / 5;
|
|
87
|
+
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
|
|
88
|
+
}
|
|
89
|
+
.editorial-feature--dark .editorial-feature__img {
|
|
90
|
+
box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
|
|
91
|
+
}
|
|
92
|
+
.editorial-feature__placeholder {
|
|
93
|
+
width: 100%;
|
|
94
|
+
aspect-ratio: 4 / 5;
|
|
95
|
+
border-radius: 4px;
|
|
96
|
+
background: linear-gradient(145deg, rgba(139, 115, 85, 0.35), rgba(28, 26, 23, 0.08));
|
|
97
|
+
}
|
|
98
|
+
.editorial-feature--dark .editorial-feature__placeholder {
|
|
99
|
+
background: linear-gradient(145deg, rgba(201, 169, 98, 0.25), rgba(0, 0, 0, 0.4));
|
|
100
|
+
}
|
|
101
|
+
.editorial-feature__copy {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
gap: 1rem;
|
|
105
|
+
padding: 0.25rem 0;
|
|
106
|
+
}
|
|
107
|
+
.editorial-feature__eyebrow {
|
|
108
|
+
margin: 0;
|
|
109
|
+
font-size: 0.72rem;
|
|
110
|
+
letter-spacing: 0.28em;
|
|
111
|
+
text-transform: uppercase;
|
|
112
|
+
font-weight: 600;
|
|
113
|
+
color: var(--ed-accent, #8b7355);
|
|
114
|
+
}
|
|
115
|
+
.editorial-feature__title {
|
|
116
|
+
margin: 0;
|
|
117
|
+
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
118
|
+
font-weight: 500;
|
|
119
|
+
font-size: clamp(1.85rem, 4vw, 2.65rem);
|
|
120
|
+
line-height: 1.15;
|
|
121
|
+
}
|
|
122
|
+
.editorial-feature__body {
|
|
123
|
+
margin: 0;
|
|
124
|
+
font-size: 1.02rem;
|
|
125
|
+
line-height: 1.75;
|
|
126
|
+
opacity: 0.88;
|
|
127
|
+
max-width: 34rem;
|
|
128
|
+
}
|
|
129
|
+
.editorial-feature__link {
|
|
130
|
+
margin-top: 0.25rem;
|
|
131
|
+
display: inline-flex;
|
|
132
|
+
align-items: center;
|
|
133
|
+
gap: 0.5rem;
|
|
134
|
+
font-size: 0.82rem;
|
|
135
|
+
font-weight: 600;
|
|
136
|
+
letter-spacing: 0.18em;
|
|
137
|
+
text-transform: uppercase;
|
|
138
|
+
text-decoration: none;
|
|
139
|
+
color: var(--ed-accent, #8b7355);
|
|
140
|
+
border-bottom: 1px solid currentColor;
|
|
141
|
+
padding-bottom: 2px;
|
|
142
|
+
width: fit-content;
|
|
143
|
+
transition: gap 0.2s ease, opacity 0.2s ease;
|
|
144
|
+
}
|
|
145
|
+
.editorial-feature__link:hover {
|
|
146
|
+
gap: 0.65rem;
|
|
147
|
+
opacity: 0.85;
|
|
148
|
+
}
|
|
149
|
+
.editorial-feature__link-arrow {
|
|
150
|
+
font-size: 1rem;
|
|
151
|
+
line-height: 1;
|
|
152
|
+
}
|
|
153
|
+
</style>
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"icon": "https://api.iconify.design/lucide:mail.svg",
|
|
3
|
-
"label": "Newsletter — luxe",
|
|
4
|
-
"section_schema": [
|
|
5
|
-
{
|
|
6
|
-
"name": "headline",
|
|
7
|
-
"type": "string",
|
|
8
|
-
"default": "Notes from the studio",
|
|
9
|
-
"description": "Heading"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "body",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"default": "Private previews, styling tips, and early access to drops—sent sparingly, never noisy.",
|
|
15
|
-
"description": "Supporting text"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"name": "placeholder",
|
|
19
|
-
"type": "string",
|
|
20
|
-
"default": "Email address",
|
|
21
|
-
"description": "Input placeholder"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "button_label",
|
|
25
|
-
"type": "string",
|
|
26
|
-
"default": "Join the list",
|
|
27
|
-
"description": "Submit button label"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "footnote",
|
|
31
|
-
"type": "string",
|
|
32
|
-
"default": "By subscribing you agree to receive marketing emails. Unsubscribe anytime.",
|
|
33
|
-
"description": "Fine print under the form"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "show_footnote",
|
|
37
|
-
"type": "boolean",
|
|
38
|
-
"default": true,
|
|
39
|
-
"description": "Show the fine print"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"name": "bg_color",
|
|
43
|
-
"type": "color",
|
|
44
|
-
"default": "#1A1814",
|
|
45
|
-
"description": "Section background"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"name": "text_color",
|
|
49
|
-
"type": "color",
|
|
50
|
-
"default": "#F4EEE6",
|
|
51
|
-
"description": "Section text color"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"name": "button_color",
|
|
55
|
-
"type": "color",
|
|
56
|
-
"default": "#C9A962",
|
|
57
|
-
"description": "Button background"
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"icon": "https://api.iconify.design/lucide:mail.svg",
|
|
3
|
+
"label": "Newsletter — luxe",
|
|
4
|
+
"section_schema": [
|
|
5
|
+
{
|
|
6
|
+
"name": "headline",
|
|
7
|
+
"type": "string",
|
|
8
|
+
"default": "Notes from the studio",
|
|
9
|
+
"description": "Heading"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "body",
|
|
13
|
+
"type": "string",
|
|
14
|
+
"default": "Private previews, styling tips, and early access to drops—sent sparingly, never noisy.",
|
|
15
|
+
"description": "Supporting text"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "placeholder",
|
|
19
|
+
"type": "string",
|
|
20
|
+
"default": "Email address",
|
|
21
|
+
"description": "Input placeholder"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "button_label",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"default": "Join the list",
|
|
27
|
+
"description": "Submit button label"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "footnote",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"default": "By subscribing you agree to receive marketing emails. Unsubscribe anytime.",
|
|
33
|
+
"description": "Fine print under the form"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "show_footnote",
|
|
37
|
+
"type": "boolean",
|
|
38
|
+
"default": true,
|
|
39
|
+
"description": "Show the fine print"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "bg_color",
|
|
43
|
+
"type": "color",
|
|
44
|
+
"default": "#1A1814",
|
|
45
|
+
"description": "Section background"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "text_color",
|
|
49
|
+
"type": "color",
|
|
50
|
+
"default": "#F4EEE6",
|
|
51
|
+
"description": "Section text color"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "button_color",
|
|
55
|
+
"type": "color",
|
|
56
|
+
"default": "#C9A962",
|
|
57
|
+
"description": "Button background"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|