jekyll-cessda-docs 0.1.10.pre.1ed94d588429435ee094e916854b74478a0f0f3c → 0.1.10.pre.d82c42ba9ed332418f362da4ebd6622718985a14
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.
- checksums.yaml +4 -4
- data/_includes/feedback.html +57 -0
- data/_layouts/default.html +1 -0
- data/_sass/custom/custom.scss +13 -3
- data/_sass/support/_fonts.scss +64 -0
- data/_sass/support/_variables.scss +3 -3
- data/_sass/support/support.scss +1 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.woff2 +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.ttf +0 -0
- data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.woff2 +0 -0
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82eb8db8d6b140c61e3163d89e5eccd2233be31f9c10bef4e9047f6da7118011
|
4
|
+
data.tar.gz: 7dcf2cb75f419dca099842c9ef0fc828091c206d8473a739f8692cda9993c726
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a7c829dce7314a48803b77410183a5ce0726d775f7486346126832570bfdf54f6671606a7b244a6628b7ace2f064cfcdcecf950d439c4f8d8a07e9d263a2c5e
|
7
|
+
data.tar.gz: 54ae55d2449b2deb2f7ee06e00157bbb5bc41cc2c299271adeda7b52ddf9d2537a7201c30c9c40fd8aa33b155d5c277c7bff7f19d4481cf6f94f191a5911e2b4
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
2
|
+
|
3
|
+
<button id="zammad-feedback-form" style="position: fixed; right: 0; bottom: 0; font-size: 14px; color: white; background-color: #4e4d56; border: none; padding: 0px 10px; height: 40px; line-height: 40px;">Send Feedback</button>
|
4
|
+
<script id="zammad_form_script" src="https://helpdesk.cessda.eu/assets/form/form.js"></script>
|
5
|
+
<script>
|
6
|
+
$(function() {
|
7
|
+
$('#zammad-feedback-form').ZammadForm({
|
8
|
+
agreementMessage:' Accept CESSDA <a target="_blank" href="https://www.cessda.eu/Privacy-policy">Data Privacy Policy</a> & <a target="_blank" href="https://www.cessda.eu/Acceptable-Use-Policy">Acceptable Use Policy</a>',
|
9
|
+
messageTitle: 'Service Documentation Feedback Form',
|
10
|
+
messageSubmit: 'Submit',
|
11
|
+
messageThankYou: 'Thank you for your inquiry (#%s)! We\'ll contact you as soon as possible.',
|
12
|
+
modal: true,
|
13
|
+
targetGroupID: 31,
|
14
|
+
attributes: [
|
15
|
+
{
|
16
|
+
display: 'Name',
|
17
|
+
name: 'name',
|
18
|
+
tag: 'input',
|
19
|
+
type: 'text',
|
20
|
+
id: 'zammad-form-name',
|
21
|
+
required: true,
|
22
|
+
placeholder: 'Your Name',
|
23
|
+
defaultValue: '',
|
24
|
+
},
|
25
|
+
{
|
26
|
+
display: 'Email',
|
27
|
+
name: 'email',
|
28
|
+
tag: 'input',
|
29
|
+
type: 'email',
|
30
|
+
id: 'zammad-form-email',
|
31
|
+
required: true,
|
32
|
+
placeholder: 'Your Email',
|
33
|
+
defaultValue: '',
|
34
|
+
},
|
35
|
+
{
|
36
|
+
display: 'Subject',
|
37
|
+
name: 'title',
|
38
|
+
tag: 'input',
|
39
|
+
id: 'zammad-form-subject',
|
40
|
+
required: false,
|
41
|
+
placeholder: 'My subject',
|
42
|
+
defaultValue: '',
|
43
|
+
},
|
44
|
+
{
|
45
|
+
display: 'Message',
|
46
|
+
name: 'body',
|
47
|
+
tag: 'textarea',
|
48
|
+
id: 'zammad-form-body',
|
49
|
+
required: true,
|
50
|
+
placeholder: 'Your Message...',
|
51
|
+
defaultValue: '',
|
52
|
+
rows: 7,
|
53
|
+
}
|
54
|
+
]
|
55
|
+
});
|
56
|
+
});
|
57
|
+
</script>
|
data/_layouts/default.html
CHANGED
@@ -199,6 +199,7 @@ layout: table_wrappers
|
|
199
199
|
<a href="https://www.cessda.eu/Tools-Services">CESSDA Tools & Services</a>
|
200
200
|
</div>
|
201
201
|
</div>
|
202
|
+
{% include feedback.html %}
|
202
203
|
</footer>
|
203
204
|
{% if site.send_feedback_snippet and site.send_feedback_snippet != "" and site.send_feedback_snippet != nil %}
|
204
205
|
{{ site.send_feedback_snippet }}
|
data/_sass/custom/custom.scss
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
|
2
|
+
html {
|
3
|
+
@include fs-4;
|
4
|
+
}
|
5
|
+
|
6
|
+
h1,
|
7
|
+
h2,
|
8
|
+
h3 {
|
9
|
+
font-weight: 600;
|
10
|
+
}
|
11
|
+
|
2
12
|
a {
|
3
|
-
|
4
|
-
|
13
|
+
transition: color 0.3s, background-color 0.3s;
|
14
|
+
}
|
5
15
|
.topcont {
|
6
16
|
height: 30px;
|
7
17
|
width:100%;
|
@@ -90,4 +100,4 @@ margin:0;
|
|
90
100
|
#footerlogo {
|
91
101
|
display:none;
|
92
102
|
}
|
93
|
-
}
|
103
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/* inter-300 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
2
|
+
@font-face {
|
3
|
+
font-display: swap;
|
4
|
+
font-family: 'InterWeb';
|
5
|
+
font-style: normal;
|
6
|
+
font-weight: 300;
|
7
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
8
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
9
|
+
}
|
10
|
+
/* inter-regular - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
11
|
+
@font-face {
|
12
|
+
font-display: swap;
|
13
|
+
font-family: 'InterWeb';
|
14
|
+
font-style: normal;
|
15
|
+
font-weight: 400;
|
16
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
17
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
18
|
+
}
|
19
|
+
/* inter-500 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
20
|
+
@font-face {
|
21
|
+
font-display: swap;
|
22
|
+
font-family: 'InterWeb';
|
23
|
+
font-style: normal;
|
24
|
+
font-weight: 500;
|
25
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
26
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
27
|
+
}
|
28
|
+
/* inter-600 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
29
|
+
@font-face {
|
30
|
+
font-display: swap;
|
31
|
+
font-family: 'InterWeb';
|
32
|
+
font-style: normal;
|
33
|
+
font-weight: 600;
|
34
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
35
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
36
|
+
}
|
37
|
+
/* inter-700 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
38
|
+
@font-face {
|
39
|
+
font-display: swap;
|
40
|
+
font-family: 'InterWeb';
|
41
|
+
font-style: normal;
|
42
|
+
font-weight: 700;
|
43
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
44
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
45
|
+
}
|
46
|
+
/* inter-800 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
47
|
+
@font-face {
|
48
|
+
font-display: swap;
|
49
|
+
font-family: 'InterWeb';
|
50
|
+
font-style: normal;
|
51
|
+
font-weight: 800;
|
52
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
53
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
54
|
+
}
|
55
|
+
/* inter-900 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
56
|
+
@font-face {
|
57
|
+
font-display: swap;
|
58
|
+
font-family: 'InterWeb';
|
59
|
+
font-style: normal;
|
60
|
+
font-weight: 900;
|
61
|
+
src: url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
62
|
+
url('../fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
|
63
|
+
}
|
64
|
+
|
@@ -2,7 +2,7 @@
|
|
2
2
|
// Typography
|
3
3
|
//
|
4
4
|
|
5
|
-
$body-font-family: "
|
5
|
+
$body-font-family: "InterWeb", sans-serif !default;
|
6
6
|
$mono-font-family: "SFMono-Regular", Menlo, Consolas, Monospace !default;
|
7
7
|
$root-font-size: 18px !default; // Base font-size for rems
|
8
8
|
$body-line-height: 1.3 !default;
|
@@ -35,7 +35,7 @@ $white: #fff !default;
|
|
35
35
|
|
36
36
|
$grey-dk-000: #959396 !default;
|
37
37
|
$grey-dk-100: #5c5962 !default;
|
38
|
-
$grey-dk-200: #
|
38
|
+
$grey-dk-200: #393d41 !default;
|
39
39
|
$grey-dk-250: #302d36 !default;
|
40
40
|
$grey-dk-300: #27262b !default;
|
41
41
|
|
@@ -51,7 +51,7 @@ $purple-300: #381885 !default;
|
|
51
51
|
|
52
52
|
$blue-000: #2c84fa !default;
|
53
53
|
$blue-100: #2869e6 !default;
|
54
|
-
$blue-200: #
|
54
|
+
$blue-200: #0b6098 !default;
|
55
55
|
$blue-300: #2b5a9b !default;
|
56
56
|
|
57
57
|
$green-000: #41d693 !default;
|
data/_sass/support/support.scss
CHANGED
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.ttf
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.woff2
ADDED
Binary file
|
data/assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.ttf
ADDED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-cessda-docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.10.pre.
|
4
|
+
version: 0.1.10.pre.d82c42ba9ed332418f362da4ebd6622718985a14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- openconcept
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -50,6 +50,7 @@ files:
|
|
50
50
|
- _config.yml
|
51
51
|
- _includes/css/custom.scss.liquid
|
52
52
|
- _includes/css/just-the-docs.scss.liquid
|
53
|
+
- _includes/feedback.html
|
53
54
|
- _includes/fix_linenos.html
|
54
55
|
- _includes/glossary.html
|
55
56
|
- _includes/glossary_table.html
|
@@ -81,6 +82,7 @@ files:
|
|
81
82
|
- _sass/navigation.scss
|
82
83
|
- _sass/print.scss
|
83
84
|
- _sass/search.scss
|
85
|
+
- _sass/support/_fonts.scss
|
84
86
|
- _sass/support/_functions.scss
|
85
87
|
- _sass/support/_variables.scss
|
86
88
|
- _sass/support/mixins/_buttons.scss
|
@@ -103,6 +105,24 @@ files:
|
|
103
105
|
- assets/css/just-the-docs-dark.scss
|
104
106
|
- assets/css/just-the-docs-default.scss
|
105
107
|
- assets/css/just-the-docs-light.scss
|
108
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.ttf
|
109
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-100.woff2
|
110
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.ttf
|
111
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-200.woff2
|
112
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.ttf
|
113
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-300.woff2
|
114
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.ttf
|
115
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-500.woff2
|
116
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.ttf
|
117
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-600.woff2
|
118
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.ttf
|
119
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.woff2
|
120
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.ttf
|
121
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-800.woff2
|
122
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.ttf
|
123
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-900.woff2
|
124
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.ttf
|
125
|
+
- assets/fonts/inter/inter-v12-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.woff2
|
106
126
|
- assets/images/CESSDA.png
|
107
127
|
- assets/images/search.svg
|
108
128
|
- assets/js/just-the-docs.js
|