@paroicms/playground_demo2 0.56.0
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/.turbo/turbo-build.log +12 -0
- package/CHANGELOG.md +1098 -0
- package/README.md +9 -0
- package/package.json +41 -0
- package/paroicms-site.js +9 -0
- package/site-schema.json +288 -0
- package/site-schema.l10n.en.json +94 -0
- package/site-schema.l10n.fr.json +94 -0
- package/theme/assets/css/index.css +1 -0
- package/theme/assets/icons/arrow-grey.svg +1 -0
- package/theme/assets/js/main.js +3 -0
- package/theme/assets/scss/_Breadcrumb.scss +22 -0
- package/theme/assets/scss/_ContactForm.scss +34 -0
- package/theme/assets/scss/_Gallery.scss +11 -0
- package/theme/assets/scss/_HeaderBar.scss +64 -0
- package/theme/assets/scss/_HeroBanner.scss +21 -0
- package/theme/assets/scss/_Paginate.scss +9 -0
- package/theme/assets/scss/_Part.scss +32 -0
- package/theme/assets/scss/_ResultItem.scss +3 -0
- package/theme/assets/scss/_SiteFooter.scss +11 -0
- package/theme/assets/scss/_Text.scss +157 -0
- package/theme/assets/scss/_Tile.scss +51 -0
- package/theme/assets/scss/_constants.scss +83 -0
- package/theme/assets/scss/_global.scss +7 -0
- package/theme/assets/scss/_layout.scss +85 -0
- package/theme/assets/scss/_reset.scss +136 -0
- package/theme/assets/scss/index.scss +14 -0
- package/theme/locales/fr.json +10 -0
- package/theme/templates/404.liquid +11 -0
- package/theme/templates/about-page.liquid +64 -0
- package/theme/templates/contact-page.liquid +15 -0
- package/theme/templates/exhibition.liquid +33 -0
- package/theme/templates/home.liquid +218 -0
- package/theme/templates/index.liquid +8 -0
- package/theme/templates/layouts/main-layout.liquid +26 -0
- package/theme/templates/page.liquid +109 -0
- package/theme/templates/pages.liquid +34 -0
- package/theme/templates/partials/breadcrumb.liquid +13 -0
- package/theme/templates/partials/footer.liquid +6 -0
- package/theme/templates/partials/header.liquid +59 -0
- package/theme/templates/partials/post.public.liquid +32 -0
- package/theme/templates/partials/result-item.public.liquid +31 -0
- package/theme/templates/post.liquid +65 -0
- package/theme/templates/posts.liquid +34 -0
- package/theme/templates/search-page.liquid +49 -0
- package/theme/templates/shelf.liquid +33 -0
- package/theme/templates/tag.liquid +7 -0
- package/theme/templates/video-page.liquid +69 -0
- package/theme/theme.json +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@use "constants";
|
|
2
|
+
|
|
3
|
+
.HeroBanner {
|
|
4
|
+
&-img {
|
|
5
|
+
height: 545px;
|
|
6
|
+
object-fit: cover;
|
|
7
|
+
width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@include constants.for-phone-and-tablet {
|
|
11
|
+
&-img {
|
|
12
|
+
height: 300px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@include constants.for-phone {
|
|
17
|
+
&-img {
|
|
18
|
+
height: 200px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.List {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
margin-top: 20px;
|
|
5
|
+
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.PartItem {
|
|
9
|
+
margin: 0 auto;
|
|
10
|
+
|
|
11
|
+
img {
|
|
12
|
+
margin-bottom: 10px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.partner {
|
|
16
|
+
margin-bottom: 20px;
|
|
17
|
+
max-width: 300px;
|
|
18
|
+
|
|
19
|
+
p {
|
|
20
|
+
margin-top: 10px;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.sideImage {
|
|
25
|
+
display: flex;
|
|
26
|
+
width: 100%;
|
|
27
|
+
|
|
28
|
+
p {
|
|
29
|
+
margin-left: 10px;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
@use "constants";
|
|
2
|
+
|
|
3
|
+
.Text {
|
|
4
|
+
hyphens: auto;
|
|
5
|
+
overflow-wrap: break-word;
|
|
6
|
+
|
|
7
|
+
@include constants.for-phone {
|
|
8
|
+
hyphens: auto;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.justified {
|
|
12
|
+
|
|
13
|
+
p,
|
|
14
|
+
li {
|
|
15
|
+
text-align: justify;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.selfContained::after {
|
|
20
|
+
clear: both;
|
|
21
|
+
content: "";
|
|
22
|
+
display: block;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
a {
|
|
26
|
+
text-decoration: underline;
|
|
27
|
+
|
|
28
|
+
&:hover {
|
|
29
|
+
text-decoration: none;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h1,
|
|
34
|
+
h2 {
|
|
35
|
+
clear: both;
|
|
36
|
+
font-size: constants.$f28;
|
|
37
|
+
font-weight: bold;
|
|
38
|
+
margin: 2rem 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h3 {
|
|
42
|
+
font-size: constants.$f18;
|
|
43
|
+
font-weight: bold;
|
|
44
|
+
margin: 1.5rem 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h4,
|
|
48
|
+
h5 {
|
|
49
|
+
font-size: constants.$f16;
|
|
50
|
+
font-weight: bold;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
blockquote,
|
|
54
|
+
h4,
|
|
55
|
+
h5,
|
|
56
|
+
ol,
|
|
57
|
+
p,
|
|
58
|
+
table,
|
|
59
|
+
ul {
|
|
60
|
+
margin-bottom: 10px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
blockquote {
|
|
64
|
+
margin-left: 50px;
|
|
65
|
+
margin-right: 20px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
ul,
|
|
69
|
+
ol {
|
|
70
|
+
margin-left: 20px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
li {
|
|
74
|
+
margin-bottom: 5px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
ul {
|
|
78
|
+
list-style: disc;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
ol {
|
|
82
|
+
list-style: decimal;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
ul ul,
|
|
86
|
+
ol ul {
|
|
87
|
+
list-style: circle;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
ul ol,
|
|
91
|
+
ol ol {
|
|
92
|
+
list-style: lower-alpha;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
img,
|
|
96
|
+
svg {
|
|
97
|
+
height: auto;
|
|
98
|
+
max-width: 100%;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.Img {
|
|
102
|
+
&.left {
|
|
103
|
+
float: left;
|
|
104
|
+
margin: 5px 20px 10px 0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
&.right {
|
|
108
|
+
float: right;
|
|
109
|
+
margin: 5px 0 10px 20px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&.center {
|
|
113
|
+
display: block;
|
|
114
|
+
margin: 20px auto;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ql-align-center {
|
|
119
|
+
text-align: center !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ql-align-right {
|
|
123
|
+
text-align: right !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.ql-size-small {
|
|
127
|
+
font-size: constants.$f9;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.ql-size-large {
|
|
131
|
+
font-size: constants.$f18;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ql-size-huge {
|
|
135
|
+
font-size: constants.$f32;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.hljs {
|
|
139
|
+
background-color: #f5f5f5;
|
|
140
|
+
border-left: 15px solid #ddd;
|
|
141
|
+
font-family: monospace;
|
|
142
|
+
font-size: constants.$f14;
|
|
143
|
+
line-height: 1.35;
|
|
144
|
+
margin: 20px 10px;
|
|
145
|
+
overflow-x: auto;
|
|
146
|
+
padding: 10px 20px 10px 15px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
code {
|
|
150
|
+
background-color: #f5f5f5;
|
|
151
|
+
border: 1px dotted #ccc;
|
|
152
|
+
color: #785454;
|
|
153
|
+
font-family: sans-serif;
|
|
154
|
+
font-size: constants.$f15;
|
|
155
|
+
padding: 1px 3px;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
@use "constants";
|
|
2
|
+
|
|
3
|
+
.Tile {
|
|
4
|
+
background-color: #f0f0f0;
|
|
5
|
+
|
|
6
|
+
&-img {
|
|
7
|
+
display: block;
|
|
8
|
+
height: auto;
|
|
9
|
+
object-fit: cover;
|
|
10
|
+
width: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@include constants.for-phone {
|
|
14
|
+
margin-bottom: 20px;
|
|
15
|
+
|
|
16
|
+
&-text {
|
|
17
|
+
padding: 10px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.Tile2 {
|
|
23
|
+
background-color: #f0f0f0;
|
|
24
|
+
|
|
25
|
+
&-img {
|
|
26
|
+
display: block;
|
|
27
|
+
height: auto;
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&-text {
|
|
32
|
+
padding: 10px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@include constants.for-phone {
|
|
36
|
+
margin-bottom: 20px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.Tile-tags {
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-wrap: wrap;
|
|
43
|
+
|
|
44
|
+
&>span {
|
|
45
|
+
border: 1px solid #000;
|
|
46
|
+
border-radius: 15px;
|
|
47
|
+
margin-bottom: 10px;
|
|
48
|
+
margin-right: 5px;
|
|
49
|
+
padding: 5px 10px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
@mixin for-phone {
|
|
2
|
+
@media not all and (min-width: 640px) {
|
|
3
|
+
@content;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@mixin for-tablet-up {
|
|
8
|
+
@media (min-width: 640px) {
|
|
9
|
+
@content;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@mixin for-phone-and-tablet {
|
|
14
|
+
@media not all and (min-width: 992px) {
|
|
15
|
+
@content;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@mixin for-desktop {
|
|
20
|
+
@media (min-width: 992px) {
|
|
21
|
+
@content;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
$f6: 0.375rem;
|
|
26
|
+
$f7: 0.4375rem;
|
|
27
|
+
$f8: 0.5rem;
|
|
28
|
+
$f9: 0.5625rem;
|
|
29
|
+
$f10: 0.625rem;
|
|
30
|
+
$f11: 0.6875rem;
|
|
31
|
+
$f12: 0.75rem;
|
|
32
|
+
$f13: 0.8125rem;
|
|
33
|
+
$f14: 0.875rem;
|
|
34
|
+
$f15: 0.9375rem;
|
|
35
|
+
$f16: 1rem;
|
|
36
|
+
$f17: 1.0625rem;
|
|
37
|
+
$f18: 1.125rem;
|
|
38
|
+
$f19: 1.1875rem;
|
|
39
|
+
$f20: 1.25rem;
|
|
40
|
+
$f21: 1.3125rem;
|
|
41
|
+
$f22: 1.375rem;
|
|
42
|
+
$f23: 1.4375rem;
|
|
43
|
+
$f24: 1.5rem;
|
|
44
|
+
$f25: 1.5625rem;
|
|
45
|
+
$f26: 1.625rem;
|
|
46
|
+
$f27: 1.6875rem;
|
|
47
|
+
$f28: 1.75rem;
|
|
48
|
+
$f29: 1.8125rem;
|
|
49
|
+
$f30: 1.875rem;
|
|
50
|
+
$f31: 1.9375rem;
|
|
51
|
+
$f32: 2rem;
|
|
52
|
+
$f33: 2.0625rem;
|
|
53
|
+
$f34: 2.125rem;
|
|
54
|
+
$f35: 2.1875rem;
|
|
55
|
+
$f36: 2.25rem;
|
|
56
|
+
$f37: 2.3125rem;
|
|
57
|
+
$f38: 2.375rem;
|
|
58
|
+
$f39: 2.4375rem;
|
|
59
|
+
$f40: 2.5rem;
|
|
60
|
+
$f41: 2.5625rem;
|
|
61
|
+
$f42: 2.625rem;
|
|
62
|
+
$f43: 2.6875rem;
|
|
63
|
+
$f44: 2.75rem;
|
|
64
|
+
$f45: 2.8125rem;
|
|
65
|
+
$f46: 2.875rem;
|
|
66
|
+
$f47: 2.9375rem;
|
|
67
|
+
$f48: 3rem;
|
|
68
|
+
$f49: 3.0625rem;
|
|
69
|
+
$f50: 3.125rem;
|
|
70
|
+
$f51: 3.1875rem;
|
|
71
|
+
$f52: 3.25rem;
|
|
72
|
+
$f53: 3.3125rem;
|
|
73
|
+
$f54: 3.375rem;
|
|
74
|
+
$f55: 3.4375rem;
|
|
75
|
+
$f56: 3.5rem;
|
|
76
|
+
$f57: 3.5625rem;
|
|
77
|
+
$f58: 3.625rem;
|
|
78
|
+
$f59: 3.6875rem;
|
|
79
|
+
$f60: 3.75rem;
|
|
80
|
+
$f61: 3.8125rem;
|
|
81
|
+
$f62: 3.875rem;
|
|
82
|
+
$f63: 3.9375rem;
|
|
83
|
+
$f64: 4rem;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@use "constants";
|
|
2
|
+
|
|
3
|
+
.Container {
|
|
4
|
+
margin-left: auto;
|
|
5
|
+
margin-right: auto;
|
|
6
|
+
max-width: 1200px;
|
|
7
|
+
|
|
8
|
+
&.text {
|
|
9
|
+
max-width: 700px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@include constants.for-phone {
|
|
13
|
+
width: 90%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@include constants.for-tablet-up {
|
|
17
|
+
&.pad {
|
|
18
|
+
max-width: 1240px;
|
|
19
|
+
padding-left: 20px;
|
|
20
|
+
padding-right: 20px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.pad.text {
|
|
24
|
+
max-width: 740px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@include constants.for-tablet-up {
|
|
30
|
+
|
|
31
|
+
.Grid6,
|
|
32
|
+
.Grid9,
|
|
33
|
+
.Grid12 {
|
|
34
|
+
column-gap: 25px;
|
|
35
|
+
display: grid;
|
|
36
|
+
row-gap: 25px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.Grid6 {
|
|
40
|
+
grid-template-columns: repeat(6, 1fr);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.Grid9 {
|
|
44
|
+
grid-template-columns: repeat(9, 1fr);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.Grid12 {
|
|
48
|
+
grid-template-columns: repeat(12, 1fr);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.Span2 {
|
|
52
|
+
grid-column-end: span 2;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.Span3 {
|
|
56
|
+
grid-column-end: span 3;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.Span4 {
|
|
60
|
+
grid-column-end: span 4;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.Span6 {
|
|
64
|
+
grid-column-end: span 6;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.Span12 {
|
|
68
|
+
grid-column-end: span 12;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.Column3 {
|
|
72
|
+
grid-column-start: 3;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.Column7 {
|
|
76
|
+
grid-column-start: 7;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@include constants.for-phone-and-tablet {
|
|
80
|
+
.Span4Tablet {
|
|
81
|
+
grid-column-end: span 4;
|
|
82
|
+
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
|
2
|
+
v2.0 | 20110126
|
|
3
|
+
License: none (public domain)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
html,
|
|
7
|
+
body,
|
|
8
|
+
div,
|
|
9
|
+
span,
|
|
10
|
+
applet,
|
|
11
|
+
object,
|
|
12
|
+
iframe,
|
|
13
|
+
h1,
|
|
14
|
+
h2,
|
|
15
|
+
h3,
|
|
16
|
+
h4,
|
|
17
|
+
h5,
|
|
18
|
+
h6,
|
|
19
|
+
p,
|
|
20
|
+
blockquote,
|
|
21
|
+
pre,
|
|
22
|
+
a,
|
|
23
|
+
abbr,
|
|
24
|
+
acronym,
|
|
25
|
+
address,
|
|
26
|
+
big,
|
|
27
|
+
cite,
|
|
28
|
+
code,
|
|
29
|
+
del,
|
|
30
|
+
dfn,
|
|
31
|
+
em,
|
|
32
|
+
img,
|
|
33
|
+
ins,
|
|
34
|
+
kbd,
|
|
35
|
+
q,
|
|
36
|
+
s,
|
|
37
|
+
samp,
|
|
38
|
+
small,
|
|
39
|
+
strike,
|
|
40
|
+
strong,
|
|
41
|
+
sub,
|
|
42
|
+
sup,
|
|
43
|
+
tt,
|
|
44
|
+
var,
|
|
45
|
+
b,
|
|
46
|
+
u,
|
|
47
|
+
i,
|
|
48
|
+
center,
|
|
49
|
+
dl,
|
|
50
|
+
dt,
|
|
51
|
+
dd,
|
|
52
|
+
ol,
|
|
53
|
+
ul,
|
|
54
|
+
li,
|
|
55
|
+
fieldset,
|
|
56
|
+
form,
|
|
57
|
+
label,
|
|
58
|
+
legend,
|
|
59
|
+
table,
|
|
60
|
+
caption,
|
|
61
|
+
tbody,
|
|
62
|
+
tfoot,
|
|
63
|
+
thead,
|
|
64
|
+
tr,
|
|
65
|
+
th,
|
|
66
|
+
td,
|
|
67
|
+
article,
|
|
68
|
+
aside,
|
|
69
|
+
canvas,
|
|
70
|
+
details,
|
|
71
|
+
embed,
|
|
72
|
+
figure,
|
|
73
|
+
figcaption,
|
|
74
|
+
footer,
|
|
75
|
+
header,
|
|
76
|
+
hgroup,
|
|
77
|
+
menu,
|
|
78
|
+
nav,
|
|
79
|
+
output,
|
|
80
|
+
ruby,
|
|
81
|
+
section,
|
|
82
|
+
summary,
|
|
83
|
+
time,
|
|
84
|
+
mark,
|
|
85
|
+
audio,
|
|
86
|
+
video,
|
|
87
|
+
button {
|
|
88
|
+
margin: 0;
|
|
89
|
+
padding: 0;
|
|
90
|
+
border: 0;
|
|
91
|
+
font-size: 100%;
|
|
92
|
+
font: inherit;
|
|
93
|
+
vertical-align: baseline;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* HTML5 display-role reset for older browsers */
|
|
97
|
+
article,
|
|
98
|
+
aside,
|
|
99
|
+
details,
|
|
100
|
+
figcaption,
|
|
101
|
+
figure,
|
|
102
|
+
footer,
|
|
103
|
+
header,
|
|
104
|
+
hgroup,
|
|
105
|
+
menu,
|
|
106
|
+
nav,
|
|
107
|
+
section {
|
|
108
|
+
display: block;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
body {
|
|
112
|
+
line-height: 1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
ol,
|
|
116
|
+
ul {
|
|
117
|
+
list-style: none;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
blockquote,
|
|
121
|
+
q {
|
|
122
|
+
quotes: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
blockquote:before,
|
|
126
|
+
blockquote:after,
|
|
127
|
+
q:before,
|
|
128
|
+
q:after {
|
|
129
|
+
content: '';
|
|
130
|
+
content: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
table {
|
|
134
|
+
border-collapse: collapse;
|
|
135
|
+
border-spacing: 0;
|
|
136
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use "reset";
|
|
2
|
+
@use "global";
|
|
3
|
+
@use "layout";
|
|
4
|
+
@use "Text";
|
|
5
|
+
@use "Breadcrumb";
|
|
6
|
+
@use "HeaderBar";
|
|
7
|
+
@use "Tile";
|
|
8
|
+
@use "HeroBanner";
|
|
9
|
+
@use "SiteFooter";
|
|
10
|
+
@use "ResultItem";
|
|
11
|
+
@use "Paginate";
|
|
12
|
+
@use "Gallery";
|
|
13
|
+
@use "ContactForm";
|
|
14
|
+
@use "Part"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Home": "Accueil",
|
|
3
|
+
"Read more": "Lire la suite",
|
|
4
|
+
"This page does not exist. We offer you to <a href='/'>return to home page</a>.": "Cette page n'existe pas. Nous vous proposons de <a href='/'>revenir à la page d'accueil</a>.",
|
|
5
|
+
"All posts": "Tout les articles",
|
|
6
|
+
"Latest posts": "Articles récents",
|
|
7
|
+
"Pages": "Pages",
|
|
8
|
+
"Previous": "Précédent",
|
|
9
|
+
"Next": "Suivant"
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{% layout "layouts/main-layout.liquid" doc: doc site: site %}
|
|
2
|
+
{% block %}
|
|
3
|
+
<main class="Container">
|
|
4
|
+
<div class="Text">
|
|
5
|
+
<h1>404</h1>
|
|
6
|
+
<p>
|
|
7
|
+
{{ "This page does not exist. We offer you to <a href='/'>return to home page</a>." | t | raw }}
|
|
8
|
+
</p>
|
|
9
|
+
</div>
|
|
10
|
+
</main>
|
|
11
|
+
{% endblock %}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{% layout "layouts/main-layout.liquid" doc: doc site: site %}
|
|
2
|
+
{% block %}
|
|
3
|
+
<main class="Container">
|
|
4
|
+
{% render "./partials/breadcrumb"
|
|
5
|
+
, doc: doc
|
|
6
|
+
, site: site %}
|
|
7
|
+
{% if doc.featuredImage %}
|
|
8
|
+
<div class="HeroBanner">
|
|
9
|
+
{% useImage smallImg
|
|
10
|
+
, uid: doc.featuredImage.uid size: "324x200" %}
|
|
11
|
+
{% useImage mediumImg
|
|
12
|
+
, uid: doc.featuredImage.uid size: "1024x545" %}
|
|
13
|
+
{% useImage largeImg
|
|
14
|
+
, uid: doc.featuredImage.uid size: "1200x545" %}
|
|
15
|
+
|
|
16
|
+
<picture>
|
|
17
|
+
<source
|
|
18
|
+
width="{{ smallImg.width }}"
|
|
19
|
+
height="{{ smallImg.height }}"
|
|
20
|
+
srcset="{{ smallImg.url }}"
|
|
21
|
+
media="(max-width: 360px)">
|
|
22
|
+
<source
|
|
23
|
+
width="{{ mediumImg.width }}"
|
|
24
|
+
height="{{ mediumImg.height }}"
|
|
25
|
+
srcset="{{ mediumImg.url }}"
|
|
26
|
+
media="(max-width: 1024px)">
|
|
27
|
+
<source
|
|
28
|
+
width="{{ largeImg.width }}"
|
|
29
|
+
height="{{ largeImg.height }}"
|
|
30
|
+
srcset="{{ largeImg.url }}"
|
|
31
|
+
media="(min-width: 1920px)">
|
|
32
|
+
|
|
33
|
+
<img
|
|
34
|
+
class="HeroBanner-img"
|
|
35
|
+
src="{{ largeImg.url }}"
|
|
36
|
+
width="{{ largeImg.width }}"
|
|
37
|
+
height="{{ largeImg.height }}"
|
|
38
|
+
alt=""
|
|
39
|
+
loading="lazy">
|
|
40
|
+
</picture>
|
|
41
|
+
</div>
|
|
42
|
+
{% endif %}
|
|
43
|
+
<h1>{{ doc.title }}</h1>
|
|
44
|
+
<div class="Text">{{ doc.field.htmlContent | raw }}</div>
|
|
45
|
+
<section class="Container">
|
|
46
|
+
<h1>Test Date Fields</h1>
|
|
47
|
+
<div>
|
|
48
|
+
<h2>Date de mise à jour:
|
|
49
|
+
</h2>
|
|
50
|
+
<span>{{ doc.field.testDate }}</span>
|
|
51
|
+
</div>
|
|
52
|
+
<div>
|
|
53
|
+
<h2>Date & heure de mise à jour:
|
|
54
|
+
</h2>
|
|
55
|
+
<span>{{ doc.field.updateDateTime }}</span>
|
|
56
|
+
</div>
|
|
57
|
+
<div>
|
|
58
|
+
<h2>Heure de mise à jour:
|
|
59
|
+
</h2>
|
|
60
|
+
<span>{{ doc.field.testTime }}</span>
|
|
61
|
+
</div>
|
|
62
|
+
</section>
|
|
63
|
+
</main>
|
|
64
|
+
{% endblock %}
|