elixir-toolkit-theme 1.7.2 → 1.11.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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/_includes/events.html +14 -1
- data/_includes/footer.html +7 -0
- data/_includes/github-buttons.html +17 -0
- data/_includes/more-information-tiles.html +24 -8
- data/_includes/news.html +14 -1
- data/_includes/pageids-overview.html +3 -3
- data/_includes/toc.html +2 -2
- data/_includes/topnav.html +8 -1
- data/_layouts/page.html +7 -16
- data/_sass/_custom_variables.scss +2 -3
- data/assets/css/main.scss +17 -17
- data/assets/img/{dsw-compact.svg → dsw_compact_logo.svg} +0 -0
- data/assets/img/{fairplus.svg → fairplus_compact_logo.svg} +0 -0
- data/assets/img/{FAIRsharing-small.svg → fairsharing_compact_logo.svg} +0 -0
- data/assets/img/rdmkit_compact_logo.svg +1 -0
- data/assets/js/toc.js +4 -1
- metadata +7 -6
- data/assets/img/bio.tools.svg +0 -76
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4fe5e9440e3e34682666b6d049cf15eb286c6e61146aadd3c033f0455525176e
|
|
4
|
+
data.tar.gz: 91f7d940d74aa3f6400fc11057dd6294bb41f227102cbff06b7184c7f5b1fb48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8852094035cbd6f5e5f0fdf9faae34ff652a89ffe8a65088bcb173534cf557eb9d39b88b1cb34c6e8a8bc3c2d6688719fc0f46e085d0da6b33c6fe3a6d747af4
|
|
7
|
+
data.tar.gz: ee765a134f076c02f0410f3a42b82de1eeb090c4b1e903bc31981fdce26c1c669dab0ddebdbe3eeb8513aea988f37c78d36ffc85a7ca48b045548238afbdc159
|
data/README.md
CHANGED
|
@@ -99,6 +99,7 @@ This will start the docker container and serve the website locally. Make sure th
|
|
|
99
99
|
## This theme is known to be used in:
|
|
100
100
|
|
|
101
101
|
- [RDMkit](https://rdmkit.elixir-europe.org/)
|
|
102
|
+
- [WorkflowHub project](https://about.workflowhub.eu/)
|
|
102
103
|
- [RDMGuide](https://rdm.elixir-belgium.org/)
|
|
103
104
|
- [Infectious Diseases Toolkit](https://www.infectious-diseases-toolkit.org/)
|
|
104
105
|
- [Applied Bioinformatics and Biostatistics intranet page](https://intranet.psb.ugent.be/abb/)
|
data/_includes/events.html
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<div class="events {{include.event_type}}s">
|
|
2
2
|
{%- if include.title == "true" %}
|
|
3
|
-
<h2
|
|
3
|
+
<h2>{{include.event_type | replace: "_", " " | capitalize}}s</h2>
|
|
4
4
|
{%- endif %}
|
|
5
5
|
{%- assign events = site.data.events %}
|
|
6
|
+
{%- assign count = 0 %}
|
|
6
7
|
<ul class="list-unstyled mt-3">
|
|
7
8
|
{%- for event in events %}
|
|
8
9
|
<li class='{{include.event_type}}' data-start='{{ event.startDate}}'>
|
|
@@ -14,9 +15,21 @@
|
|
|
14
15
|
<div class="d-inline-block text-muted">{{ event.location | markdownify }}</div>
|
|
15
16
|
{%- endif %}
|
|
16
17
|
{%- if event.description %}
|
|
18
|
+
{%- assign word_count = event.description | split: " " | size %}
|
|
19
|
+
{%- if include.truncate == "true" and word_count > 40 %}
|
|
20
|
+
<p class="mb-0"><a data-bs-toggle="collapse" href="#collapse-{{count}}" role="button" aria-expanded="false" aria-controls="collapse-{{count}}">
|
|
21
|
+
View description
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
24
|
+
<div class="full-description collapse" id="collapse-{{count}}">
|
|
25
|
+
{{ event.description | markdownify }}
|
|
26
|
+
</div>
|
|
27
|
+
{%- else %}
|
|
17
28
|
{{ event.description | markdownify }}
|
|
18
29
|
{%- endif %}
|
|
30
|
+
{%- endif %}
|
|
19
31
|
</li>
|
|
32
|
+
{%- assign count = count | plus: 1 %}
|
|
20
33
|
{%- endfor %}
|
|
21
34
|
</ul>
|
|
22
35
|
{%- if include.caption == "true" %}
|
data/_includes/footer.html
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
</div>
|
|
9
9
|
{%- elsif column.type == "links" %}
|
|
10
10
|
<div class="col-lg-{{column.width}} col-sm-6">
|
|
11
|
+
{%- if column.title != nil %}
|
|
12
|
+
<span class="footer-title">{{column.title}}</span>
|
|
13
|
+
{%- endif %}
|
|
11
14
|
<ul class="mb-0">
|
|
12
15
|
{%- for link in column.children %}
|
|
13
16
|
{%- if link.url != nil and link.external_url == nil%}
|
|
@@ -20,6 +23,10 @@
|
|
|
20
23
|
{%- endfor %}
|
|
21
24
|
</ul>
|
|
22
25
|
</div>
|
|
26
|
+
{%- elsif column.type == "text" %}
|
|
27
|
+
<div class="col-lg-{{column.width}} col-sm-6 d-flex justify-content-center">
|
|
28
|
+
{{column.content | markdownify }}
|
|
29
|
+
</div>
|
|
23
30
|
{%- endif %}
|
|
24
31
|
{%- endfor %}
|
|
25
32
|
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{%- if site.theme_variables.github_buttons.edit_me or site.theme_variables.github_buttons.open_issue or site.theme_variables.github_buttons.history or site.theme_variables.github_buttons.edit_me == nil or site.theme_variables.github_buttons.open_issue == nil or site.theme_variables.github_buttons.history == nil %}
|
|
2
|
+
<div id="edit-me" class="btn-group">
|
|
3
|
+
{%- if site.theme_variables.github_buttons.edit_me or site.theme_variables.github_buttons.edit_me == nil %}
|
|
4
|
+
{%- if page.custom-editme %}
|
|
5
|
+
<a role="button" data-bs-toggle="tooltip" title="Propose changes to the content of this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.custom-editme}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
|
|
6
|
+
{%- else %}
|
|
7
|
+
<a role="button" data-bs-toggle="tooltip" title="Propose changes to this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
|
|
8
|
+
{%- endif %}
|
|
9
|
+
{%- endif %}
|
|
10
|
+
{%- if site.theme_variables.github_buttons.open_issue or site.theme_variables.github_buttons.open_issue == nil %}
|
|
11
|
+
<a role="button" data-bs-toggle="tooltip" title="Report an issue" href="{{site.github.repository_url}}/issues/new?title={{'Issue on page: ' | url_encode }}{{page.title | url_encode }}&body={{'I would like to report an issue on the ' | url_encode }}{{page.title | url_encode }}{{' page at `'| url_encode }}{{page.url | url_encode }}{{'`. Description of the issue:' | url_encode }}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-exclamation"></i></a>
|
|
12
|
+
{%- endif %}
|
|
13
|
+
{%- if site.theme_variables.github_buttons.history or site.theme_variables.github_buttons.history == nil %}
|
|
14
|
+
<a role="button" data-bs-toggle="tooltip" title="Check out the history of this page" href="{{site.github.repository_url}}/commits/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-history"></i></a>
|
|
15
|
+
{%- endif %}
|
|
16
|
+
</div>
|
|
17
|
+
{%- endif %}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{%- if page.faircookbook or page.fairsharing or page.training or page.dsw %}
|
|
1
|
+
{%- if page.faircookbook or page.fairsharing or page.training or page.dsw or page.rdmkit %}
|
|
2
2
|
<!-- More information -->
|
|
3
3
|
<h2>More information</h2>
|
|
4
4
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<div class="row g-1">
|
|
17
17
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
18
18
|
{%- if training.registry == "TeSS" %}
|
|
19
|
-
<img alt="TeSS logo" class="img-fluid
|
|
19
|
+
<img alt="TeSS logo" class="img-fluid" src="assets/img/tess_logo.svg">
|
|
20
20
|
{%- else %}
|
|
21
21
|
<i class="fas fa-external-link-alt text-primary fs-5"></i>
|
|
22
22
|
{%- endif %}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
</div>
|
|
35
35
|
{%- endif %}
|
|
36
|
-
{%- if page.faircookbook or page.fairsharing or page.dsw %}
|
|
36
|
+
{%- if page.faircookbook or page.fairsharing or page.dsw or page.RDMkit%}
|
|
37
37
|
<!-- FAIR Cookbook and FAIRsharing -->
|
|
38
38
|
<div class="col">
|
|
39
39
|
<div class="card h-100 info-card">
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRCookbook" href="{{ recipe.url }}">
|
|
47
47
|
<div class="row g-1">
|
|
48
48
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
49
|
-
<img alt="FAIRCookbook logo" class="img-fluid
|
|
49
|
+
<img alt="FAIRCookbook logo" class="img-fluid" src="assets/img/fairplus_compact_logo.svg">
|
|
50
50
|
</div>
|
|
51
51
|
<div class="col-10 d-flex align-items-center">
|
|
52
52
|
<span class="text-start">Step-by-step process for: {{recipe.name}}</span>
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="DSW" href="{{ site.dsw_deep_link_prefix | append: question.uuid }}">
|
|
63
63
|
<div class="row g-1">
|
|
64
64
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
65
|
-
<img alt="DSW logo" class="img-fluid
|
|
65
|
+
<img alt="DSW logo" class="img-fluid" src="assets/img/dsw_compact_logo.svg">
|
|
66
66
|
</div>
|
|
67
67
|
<div class="col-10 d-flex align-items-center">
|
|
68
68
|
<span class="text-start">Support for DMP on: {{question.name}}</span>
|
|
@@ -75,13 +75,29 @@
|
|
|
75
75
|
{%- if page.fairsharing %}
|
|
76
76
|
{%- for standard in page.fairsharing %}
|
|
77
77
|
<li class="d-grid">
|
|
78
|
-
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRsharing" href="{{ standard.
|
|
78
|
+
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRsharing" href="{{ standard.url }}">
|
|
79
79
|
<div class="row g-1">
|
|
80
80
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
81
|
-
<img alt="
|
|
81
|
+
<img alt="FAIRsharing logo" class="img-fluid" src="assets/img/fairsharing_compact_logo.svg">
|
|
82
82
|
</div>
|
|
83
83
|
<div class="col-10 d-flex align-items-center">
|
|
84
|
-
<span class="text-start">FAIRsharing collection about: {{standard.
|
|
84
|
+
<span class="text-start">FAIRsharing collection about: {{standard.name}}</span>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</a>
|
|
88
|
+
</li>
|
|
89
|
+
{%- endfor %}
|
|
90
|
+
{%- endif %}
|
|
91
|
+
{%- if page.rdmkit %}
|
|
92
|
+
{%- for rdmdoc in page.rdmkit %}
|
|
93
|
+
<li class="d-grid">
|
|
94
|
+
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="RDMkit" href="{{ rdmdoc.url }}">
|
|
95
|
+
<div class="row g-1">
|
|
96
|
+
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
97
|
+
<img alt="RDMkit logo" class="img-fluid" src="assets/img/rdmkit_compact_logo.svg">
|
|
98
|
+
</div>
|
|
99
|
+
<div class="col-10 d-flex align-items-center">
|
|
100
|
+
<span class="text-start">Data management guidelines on: {{rdmdoc.name}}</span>
|
|
85
101
|
</div>
|
|
86
102
|
</div>
|
|
87
103
|
</a>
|
data/_includes/news.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="news">
|
|
2
2
|
{%- if include.title == "true" %}
|
|
3
|
-
<h2
|
|
3
|
+
<h2>Whats new?</h2>
|
|
4
4
|
{%- endif %}
|
|
5
5
|
{%- assign news = site.data.news | sort: "date"%}
|
|
6
6
|
{%- assign count = 0 %}
|
|
@@ -9,7 +9,20 @@
|
|
|
9
9
|
<li>
|
|
10
10
|
<span class="title mb-1">{{ new.name | escape }}</span>
|
|
11
11
|
<p class="text-muted"><i class="far fa-calendar me-2"></i><time>{{ new.date | date_to_long_string }}</time>{% if new.linked_pr %}<b> - </b><i class="fas fa-code-branch"></i><a href="{{ site.github.repository_url | append: '/pull/' | append: new.linked_pr }}">{{new.linked_pr }}</a>{% endif %}</p>
|
|
12
|
+
{%- if new.description %}
|
|
13
|
+
{%- assign word_count = new.description | split: " " | size %}
|
|
14
|
+
{%- if include.truncate == "true" and word_count > 40 %}
|
|
15
|
+
<p class="mb-0"><a data-bs-toggle="collapse" href="#collapse-{{count}}" role="button" aria-expanded="false" aria-controls="collapse-{{count}}">
|
|
16
|
+
View description
|
|
17
|
+
</a>
|
|
18
|
+
</p>
|
|
19
|
+
<div class="full-description collapse" id="collapse-{{count}}">
|
|
20
|
+
{{ new.description | markdownify }}
|
|
21
|
+
</div>
|
|
22
|
+
{%- else %}
|
|
12
23
|
{{ new.description | markdownify }}
|
|
24
|
+
{%- endif %}
|
|
25
|
+
{%- endif %}
|
|
13
26
|
</li>
|
|
14
27
|
{%- assign count = count | plus: 1 %}
|
|
15
28
|
{%- if include.limit and count == include.limit %}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
<th>title</th>
|
|
12
12
|
<th>page_id</th>
|
|
13
13
|
<th>description</th>
|
|
14
|
+
<th>url</th>
|
|
14
15
|
</tr>
|
|
15
16
|
</thead>
|
|
16
17
|
<tbody>
|
|
@@ -19,9 +20,8 @@
|
|
|
19
20
|
<tr>
|
|
20
21
|
<td><a href="{{ section_page.url | relative_url }}">{{section_page.title}}</a></td>
|
|
21
22
|
<td>{{section_page.page_id}}</td>
|
|
22
|
-
{
|
|
23
|
-
<td>{{section_page.
|
|
24
|
-
{%- endif %}
|
|
23
|
+
<td>{{section_page.description | default: "no description"}}</td>
|
|
24
|
+
<td>{{section_page.url}}</td>
|
|
25
25
|
</tr>
|
|
26
26
|
{%- endif %}
|
|
27
27
|
{%- endfor %}
|
data/_includes/toc.html
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
$(document).ready(function () {
|
|
3
|
-
$('#toc').toc({ minimumHeaders: 2, listType: 'ul', showSpeed: 0, headers: 'h2' , title: '' });
|
|
3
|
+
$('#toc').toc({ minimumHeaders: {{site.theme_variables.toc.min_headers | default: 2 }}, listType: 'ul', noBackToTopLinks: true, showSpeed: 0, headers: '{{site.theme_variables.toc.headers | default: 'main h2' }}' , title: '', classes:{toc:'p-3 rounded my-4'} });
|
|
4
4
|
});
|
|
5
5
|
</script>
|
|
6
6
|
<div class="col-12 col-sm-7 col-xl-5">
|
|
7
|
-
<div id="toc"
|
|
7
|
+
<div id="toc"></div>
|
|
8
8
|
</div>
|
data/_includes/topnav.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<a class="visually-hidden-focusable" href='#footer'>Skip to footer</a>
|
|
5
5
|
<nav class="navbar navbar-expand-lg mb-3 mb-lg-5">
|
|
6
6
|
<div class="container">
|
|
7
|
-
<a class="navbar-brand" href="{{ 'index.html' | relative_url }}"><img class="me-3 img-fluid" alt="{{site.title}} logo" src="{{ 'assets/img/main_logo.svg' | relative_url }}">{% if site.topnav_title %}<span>{{site.topnav_title}}</span>{% endif %}</a>
|
|
7
|
+
<a class="navbar-brand" href="{{ 'index.html' | relative_url }}"><img class="{% if site.topnav_title %}me-3 {% endif %}img-fluid" alt="{{site.title}} logo" src="{{ 'assets/img/main_logo.svg' | relative_url }}">{% if site.topnav_title %}<span class="me-0 me-lg-3">{{site.topnav_title}}</span>{% endif %}</a>
|
|
8
8
|
<button class="navbar-toggler text-primary" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
|
9
9
|
<i title="navbar-toggler" class="fa fa-bars"></i>
|
|
10
10
|
</button>
|
|
@@ -45,9 +45,16 @@
|
|
|
45
45
|
{%- if topnav.subitems.size > 1 %}
|
|
46
46
|
<li class="nav-item ms-0 ms-lg-3 mt-2 mt-lg-0 nav-break"></li>
|
|
47
47
|
{%- endif %}
|
|
48
|
+
{%- if site.theme_variables.topnav.twitter %}
|
|
49
|
+
<li class="nav-item ms-0 ms-lg-3 mt-2 mt-lg-0">
|
|
50
|
+
<a class="nav-link ps-2 d-flex align-items-center" href="{{site.theme_variables.topnav.twitter}}"><i class="fab fa-twitter me-2"></i>Twitter</a>
|
|
51
|
+
</li>
|
|
52
|
+
{%- endif %}
|
|
53
|
+
{%- if site.theme_variables.topnav.github or site.theme_variables.topnav.github == nil %}
|
|
48
54
|
<li class="nav-item ms-0 ms-lg-3 mt-2 mt-lg-0">
|
|
49
55
|
<a class="nav-link ps-2 d-flex align-items-center" href="{{site.github.repository_url}}"><i class="fab fa-github me-2"></i>{{site.theme_variables.git_host | default: 'GitHub' }}</a>
|
|
50
56
|
</li>
|
|
57
|
+
{%- endif %}
|
|
51
58
|
<!--start search-->
|
|
52
59
|
<li class="nav-item ms-0 ms-lg-3 my-2 my-lg-0">
|
|
53
60
|
<div class="position-relative">
|
data/_layouts/page.html
CHANGED
|
@@ -9,22 +9,8 @@ layout: default
|
|
|
9
9
|
{%- else %}
|
|
10
10
|
<h1>{{ page.title }}
|
|
11
11
|
{%- endif %}
|
|
12
|
-
{%- if site.theme_variables.github_buttons.
|
|
13
|
-
|
|
14
|
-
{%- if site.theme_variables.github_buttons.edit_me or site.theme_variables.github_buttons.edit_me == nil %}
|
|
15
|
-
{%- if page.custom-editme %}
|
|
16
|
-
<a role="button" data-bs-toggle="tooltip" title="Propose changes to the content of this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.custom-editme}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
|
|
17
|
-
{%- else %}
|
|
18
|
-
<a role="button" data-bs-toggle="tooltip" title="Propose changes to this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
|
|
19
|
-
{%- endif %}
|
|
20
|
-
{%- endif %}
|
|
21
|
-
{%- if site.theme_variables.github_buttons.open_issue or site.theme_variables.github_buttons.open_issue == nil %}
|
|
22
|
-
<a role="button" data-bs-toggle="tooltip" title="Report an issue" href="{{site.github.repository_url}}/issues/new?title={{'Issue on page: ' | url_encode }}{{page.title | url_encode }}&body={{'I would like to report an issue on the ' | url_encode }}{{page.title | url_encode }}{{' page at `'| url_encode }}{{page.url | url_encode }}{{'`. Description of the issue:' | url_encode }}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-exclamation"></i></a>
|
|
23
|
-
{%- endif %}
|
|
24
|
-
{%- if site.theme_variables.github_buttons.history or site.theme_variables.github_buttons.history == nil %}
|
|
25
|
-
<a role="button" data-bs-toggle="tooltip" title="Check out the history of this page" href="{{site.github.repository_url}}/commits/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-history"></i></a>
|
|
26
|
-
{%- endif %}
|
|
27
|
-
</div>
|
|
12
|
+
{%- if site.theme_variables.github_buttons.position == "top" or site.theme_variables.github_buttons.position == nil %}
|
|
13
|
+
{% include github-buttons.html %}
|
|
28
14
|
{%- endif %}
|
|
29
15
|
</h1>
|
|
30
16
|
{%- endif %}
|
|
@@ -42,5 +28,10 @@ layout: default
|
|
|
42
28
|
{% include resource-table-all.html tag=page.page_id %}
|
|
43
29
|
{%- endif %}
|
|
44
30
|
{% include contributor-minitiles-page.html %}
|
|
31
|
+
{%- if site.theme_variables.github_buttons.position == "bottom" %}
|
|
32
|
+
<div id="github-buttons-wrapper" class="d-flex mt-5">
|
|
33
|
+
{% include github-buttons.html %}
|
|
34
|
+
</div>
|
|
35
|
+
{%- endif %}
|
|
45
36
|
</main>
|
|
46
37
|
|
|
@@ -10,7 +10,6 @@ $btn-primary-color-hover: $white;
|
|
|
10
10
|
$topnav-bg: $light;
|
|
11
11
|
$topnav-title-color: $primary;
|
|
12
12
|
$topnav-brand-height: 44px;
|
|
13
|
-
$topnav-border: 0;
|
|
14
13
|
|
|
15
14
|
/*-----Search-----*/
|
|
16
15
|
$search-result-color: $primary;
|
|
@@ -27,7 +26,6 @@ $sidebar-color-active: $white;
|
|
|
27
26
|
|
|
28
27
|
/*-----TOC-----*/
|
|
29
28
|
$toc-bg: $light;
|
|
30
|
-
$toc-border: 0;
|
|
31
29
|
|
|
32
30
|
/*-----Section navigation tiles-----*/
|
|
33
31
|
$nav-card-bg: $white;
|
|
@@ -54,6 +52,8 @@ $contr-crown-color: $white;
|
|
|
54
52
|
|
|
55
53
|
/*-----Events & news-----*/
|
|
56
54
|
$news-title-bg: $primary;
|
|
55
|
+
$news-border-color: $light;
|
|
56
|
+
$news-title-color: $white;
|
|
57
57
|
|
|
58
58
|
/*-----Default badge-----*/
|
|
59
59
|
$badge-color: $body-color;
|
|
@@ -67,5 +67,4 @@ $footer-color: $dark;
|
|
|
67
67
|
$footer-link-color: $dark;
|
|
68
68
|
$footer-link-color-hover: $primary;
|
|
69
69
|
$footer-copyright-bg: $gray-200;
|
|
70
|
-
$footer-border: 0;
|
|
71
70
|
|
data/assets/css/main.scss
CHANGED
|
@@ -133,7 +133,6 @@ pre code {
|
|
|
133
133
|
|
|
134
134
|
header .navbar {
|
|
135
135
|
background-color: $topnav-bg;
|
|
136
|
-
border-bottom: $topnav-border;
|
|
137
136
|
.navbar-brand {
|
|
138
137
|
color: $topnav-title-color;
|
|
139
138
|
img {
|
|
@@ -344,7 +343,6 @@ header .navbar {
|
|
|
344
343
|
|
|
345
344
|
#toc {
|
|
346
345
|
background-color: $toc-bg;
|
|
347
|
-
border: $toc-border;
|
|
348
346
|
// Indent the lists and reset any other padding
|
|
349
347
|
|
|
350
348
|
ul {
|
|
@@ -421,7 +419,6 @@ footer {
|
|
|
421
419
|
font-size: 0.9em;
|
|
422
420
|
line-height: 24px;
|
|
423
421
|
background-color: $footer-bg;
|
|
424
|
-
border-top: $footer-border;
|
|
425
422
|
color: $footer-color;
|
|
426
423
|
|
|
427
424
|
a {
|
|
@@ -531,7 +528,6 @@ footer {
|
|
|
531
528
|
position: fixed;
|
|
532
529
|
background-color: $footer-bg;
|
|
533
530
|
color: $footer-color;
|
|
534
|
-
border-top: $footer-border;
|
|
535
531
|
bottom: 0;
|
|
536
532
|
left: 0;
|
|
537
533
|
width: 100%;
|
|
@@ -575,10 +571,6 @@ footer {
|
|
|
575
571
|
|
|
576
572
|
/*-----Size components-----*/
|
|
577
573
|
|
|
578
|
-
.h-40px {
|
|
579
|
-
height: 40px;
|
|
580
|
-
}
|
|
581
|
-
|
|
582
574
|
.h-24px {
|
|
583
575
|
height: 24px;
|
|
584
576
|
}
|
|
@@ -591,13 +583,11 @@ li.past_event,
|
|
|
591
583
|
display: none;
|
|
592
584
|
}
|
|
593
585
|
|
|
594
|
-
.events,
|
|
595
|
-
.news {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
padding: 0px 11px;
|
|
600
|
-
}
|
|
586
|
+
.events > ul > li,
|
|
587
|
+
.news > ul > li {
|
|
588
|
+
border-left: $news-border-color 5px solid;
|
|
589
|
+
border-radius: $border-radius;
|
|
590
|
+
padding: 0px 11px;
|
|
601
591
|
|
|
602
592
|
i {
|
|
603
593
|
width: 20px;
|
|
@@ -607,13 +597,19 @@ li.past_event,
|
|
|
607
597
|
.title {
|
|
608
598
|
background-color: $news-title-bg;
|
|
609
599
|
font-weight: 600;
|
|
610
|
-
color: $
|
|
600
|
+
color: $news-title-color;
|
|
611
601
|
padding: 0px 11px;
|
|
612
602
|
border-radius: 0px 4px 4px 0px;
|
|
613
603
|
margin-left: -11px;
|
|
614
|
-
border: 1px solid $news-title-bg;
|
|
615
604
|
display: inline-block;
|
|
616
605
|
}
|
|
606
|
+
|
|
607
|
+
.full-description > *:last-child {
|
|
608
|
+
margin-bottom: 0;
|
|
609
|
+
li {
|
|
610
|
+
margin-bottom: 0;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
617
613
|
}
|
|
618
614
|
/*-----More information tiles-----*/
|
|
619
615
|
|
|
@@ -634,6 +630,10 @@ li.past_event,
|
|
|
634
630
|
color: $white !important;
|
|
635
631
|
}
|
|
636
632
|
}
|
|
633
|
+
img {
|
|
634
|
+
height: 40px;
|
|
635
|
+
max-width: 45px;
|
|
636
|
+
}
|
|
637
637
|
}
|
|
638
638
|
|
|
639
639
|
/*-----Country flags-----*/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="459.9" height="459.9" viewBox="0 0 459.9 459.9"><defs><style>.cls-1{fill:#2a2e3d;}.cls-2{fill:#fff;}.cls-3{fill:#c23669;}</style></defs><circle class="cls-1" cx="229.95" cy="229.95" r="229.95"/><path class="cls-2" d="M342.47,284.94q-3.41-17.82-11.87-27.35T312.36,244a65.14,65.14,0,0,0-17.81-4.88V236.6q22.9-2.55,35.83-12.3a52.22,52.22,0,0,0,18.24-24.81,97,97,0,0,0,5.3-32.43q0-34.35-12.93-53.64T300.91,86.07Q273.77,78,230.53,78q-29.26,0-49.83.21T143,79.28c-5,.25-10.14.59-15.42,1l64.33,47.92a53.31,53.31,0,1,1-20.65,28.73l-64.94-48.38V374.83H196.6V267.66q12.81.1,28.41.31,11.87,0,17.18,3.82T250,287.9l19.08,86.93h96.26Z"/><circle class="cls-3" cx="222.41" cy="171.92" r="22.14"/></svg>
|
data/assets/js/toc.js
CHANGED
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
showSpeed: 'slow', // set to 0 to deactivate effect
|
|
12
12
|
classes: { list: '',
|
|
13
13
|
item: '',
|
|
14
|
-
link: ''
|
|
14
|
+
link: '',
|
|
15
|
+
toc: ''
|
|
15
16
|
}
|
|
16
17
|
},
|
|
17
18
|
settings = $.extend(defaults, options);
|
|
@@ -44,6 +45,8 @@
|
|
|
44
45
|
settings.showEffect = 'none';
|
|
45
46
|
}
|
|
46
47
|
|
|
48
|
+
$(this).addClass(settings.classes.toc)
|
|
49
|
+
|
|
47
50
|
var render = {
|
|
48
51
|
show: function() { output.hide().html(html).show(settings.showSpeed); },
|
|
49
52
|
slideDown: function() { output.hide().html(html).slideDown(settings.showSpeed); },
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elixir-toolkit-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bedroesb
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -71,6 +71,7 @@ files:
|
|
|
71
71
|
- _includes/cookie-popup.html
|
|
72
72
|
- _includes/events.html
|
|
73
73
|
- _includes/footer.html
|
|
74
|
+
- _includes/github-buttons.html
|
|
74
75
|
- _includes/head.html
|
|
75
76
|
- _includes/image.html
|
|
76
77
|
- _includes/more-information-tiles.html
|
|
@@ -440,15 +441,14 @@ files:
|
|
|
440
441
|
- assets/flags/za.svg
|
|
441
442
|
- assets/flags/zm.svg
|
|
442
443
|
- assets/flags/zw.svg
|
|
443
|
-
- assets/img/FAIRsharing-small.svg
|
|
444
444
|
- assets/img/Flag_of_Europe.svg
|
|
445
445
|
- assets/img/android-chrome-192x192.png
|
|
446
446
|
- assets/img/android-chrome-512x512.png
|
|
447
447
|
- assets/img/apple-touch-icon.png
|
|
448
|
-
- assets/img/
|
|
449
|
-
- assets/img/dsw-compact.svg
|
|
448
|
+
- assets/img/dsw_compact_logo.svg
|
|
450
449
|
- assets/img/elixir_logo.svg
|
|
451
|
-
- assets/img/
|
|
450
|
+
- assets/img/fairplus_compact_logo.svg
|
|
451
|
+
- assets/img/fairsharing_compact_logo.svg
|
|
452
452
|
- assets/img/favicon-16x16.png
|
|
453
453
|
- assets/img/favicon-32x32.png
|
|
454
454
|
- assets/img/favicon.ico
|
|
@@ -456,6 +456,7 @@ files:
|
|
|
456
456
|
- assets/img/jekyll_theme_question_inverted.svg
|
|
457
457
|
- assets/img/main_logo.svg
|
|
458
458
|
- assets/img/main_logo_condesed.svg
|
|
459
|
+
- assets/img/rdmkit_compact_logo.svg
|
|
459
460
|
- assets/img/safari-pinned-tab.svg
|
|
460
461
|
- assets/img/site.webmanifest
|
|
461
462
|
- assets/img/tess_logo.svg
|
data/assets/img/bio.tools.svg
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 684.7 475.1" style="enable-background:new 0 0 684.7 475.1;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill:#ffffff;}
|
|
7
|
-
.st1{fill:#544F4C;}
|
|
8
|
-
</style>
|
|
9
|
-
<path class="st0" d="M590.8,0h5.6c12.5,0.8,24.2,8.7,29.6,20c6.4,12.7,4.1,29.1-5.5,39.5c-8.4,9.5-22.1,14-34.5,11
|
|
10
|
-
c-8.7-1.8-16.4-7.3-21.5-14.5c-7.9,4-15.6,8.5-23.4,12.7c1,5.7,1.3,11.9-1,17.4c-3.9,10-14.3,17.2-25.1,16.7
|
|
11
|
-
c-7.1,0.1-13.9-3.2-18.9-8.1c-6.3,3.9-12.6,7.7-18.9,11.5c0.7,5.3,0.4,11-2.5,15.7c-5.1,9.4-18.1,13.4-27.5,8.1
|
|
12
|
-
c-1.5-0.5-3.1-2.5-4.7-1.4c-6.4,4.1-12.6,8.6-19,12.9c0.7,5.4-0.9,11.3-5.3,14.8c-4.8,4.2-12,4.5-17.5,1.6
|
|
13
|
-
c-24.9,18.5-49,38.2-71.1,60c-1.3,1-0.5,2.5-0.1,3.7c13.1,32.6,24.1,66.3,30.5,100.9c1.4,8.5,2.8,17,2.4,25.6
|
|
14
|
-
c-0.7,7.6-3.6,15.1-8.4,21.1c-5.6,7.4-16.4,11-24.9,6.6c-3.1-1.7-1.7-6,1-7.2c5.2-2.7,8.9-7.9,9.3-13.7c0.8-10.3-0.8-20.5-2.5-30.6
|
|
15
|
-
c-5.5-30.3-14.2-60-24.1-89.1c-9.1,10.1-18.2,20.3-26.8,31c4.9-0.2,9.9-0.6,14.8-0.1c3.9,0.2,6.9,4.2,6.3,8
|
|
16
|
-
c-0.4,3.5-3.7,6.4-7.3,6.3c-8.4,0.1-16.8,0-25.1,0c-6.3,8.3-12.4,16.8-18.3,25.4c14.5,0.1,29,0,43.5,0c3.8-0.1,7.4,3.3,7.3,7.2
|
|
17
|
-
c0.1,3.9-3.4,7.3-7.3,7.2c-17.6,0.1-35.2-0.1-52.7,0.1c-5.1,8.8-10.2,17.6-14.3,26.9c22.3,0,44.6,0,67,0c3.9-0.5,7.4,3,7.4,6.8
|
|
18
|
-
c0.3,4-3.4,7.6-7.4,7.4c-24.4,0-48.8,0-73.2,0c-8.5,22.5-13.6,47.9-5.7,71.2c4.3,12.4,12.5,23.6,23.7,30.5c2.8,1.6,2.9,5.5,0.9,7.8
|
|
19
|
-
c-3.6,4.4-10.1,4.3-14.9,2.4c-10.8-4.4-21-10.5-29.1-19c-11.3-11.4-17.2-27.3-17.5-43.2c-0.7-23.3,7.1-45.8,17-66.5
|
|
20
|
-
c9.6-19.9,21.7-38.6,35-56.3c20.4-27,43.6-51.8,69.2-73.8c-9.3-24.1-19.4-47.9-31.2-71c-18.2-35.8-39.6-70.3-67-99.9
|
|
21
|
-
c-1.7-1.7-2.5-3.9-3.1-6.1c3.8-1.1,6.7,1.7,9.1,4.2c46,45.5,81.3,101,107.6,159.8c22.9-19.4,47.5-36.6,72.6-52.9
|
|
22
|
-
c-1.6-7.2,1.9-15.3,8.9-18.1c5.4-2.5,11.4-0.7,16.2,2.1c6.4-3.8,12.7-7.8,19.1-11.6c-2-5.2-3-10.9-1-16.3
|
|
23
|
-
c2.8-8.4,11.3-14.5,20.2-14.2c6.8,0,13.3,3.8,17.1,9.3c6.1-3.3,12.1-6.9,18.2-10.1c-2.9-5.8-4.6-12.5-3-18.9
|
|
24
|
-
c2.1-11.5,12.8-20.7,24.5-21.2c10.4-0.7,20.8,5.4,25.3,14.8c7.8-3.9,15.5-7.9,23.3-11.8c-6.2-11.3-5.6-25.8,1.6-36.5
|
|
25
|
-
C569.9,7,580.1,1.1,590.8,0z"/>
|
|
26
|
-
<path class="st0" d="M294.8,399.7c2.3-1.4,5.5-2,7.8-0.2c1.8,1.7,1.3,4.4,0.6,6.5c-2.3,7.1-4.9,14.2-7.2,21.4c5.1-3.6,10.6-7.4,17-8
|
|
27
|
-
c5.4-0.6,11.8-0.2,15.8,4.1c4.2,4.4,4.4,11.1,3.3,16.7c-2.4,11.3-8.4,22.2-17.7,29.2c-6.6,4.7-15.3,7.4-23.3,4.7
|
|
28
|
-
c-3.9-1.2-6.4-4.6-8.1-8.1c-1.1,3.2-2.7,6.5-5.9,8.1c-2.5,1.4-6.3,1.7-8.1-1c-0.6-2-0.2-4,0.4-5.9c6.7-19.6,13.4-39.3,20-59
|
|
29
|
-
C290.5,405,291.8,401.6,294.8,399.7z M305.5,429.8c-8.6,2.7-14,11.1-16.3,19.4c-1.2,4.2-1.8,9.5,1.7,12.9c3.8,3.3,9.6,2.7,13.7,0.3
|
|
30
|
-
c7.1-4,11.1-11.8,12.9-19.5c0.8-3.8,1-8.4-1.8-11.4C313,428.9,308.9,428.9,305.5,429.8z"/>
|
|
31
|
-
<path class="st0" d="M359.6,399.8c2.6-1.1,6.3-1.1,7.9,1.6c2.4,7-7.5,14.5-13.3,9.5C351.5,406.7,355.5,401.3,359.6,399.8z"/>
|
|
32
|
-
<path class="st0" d="M629.5,399.7c2.4-1.4,5.7-1.9,8.1-0.1c2,2,1.2,5.1,0.5,7.4c-6.7,19.9-13.5,39.8-20.3,59.7c-1.2,3.6-3.8,7-7.6,8
|
|
33
|
-
c-2.2,0.5-5,0.5-6.3-1.8c-1.2-2.4-0.2-5.1,0.5-7.4c6.7-19.7,13.4-39.4,20.1-59C625.4,403.8,627.1,401.2,629.5,399.7z"/>
|
|
34
|
-
<path class="st0" d="M471.2,404.1c2.5-3.7,9.6-6,12-1c0.5,6-3,11.4-4.4,17c2.8,0.2,5.8-0.5,8.4,0.8c2.4,1.9,0.9,5.6-1.1,7.2
|
|
35
|
-
c-3.1,2.3-7.2,1.9-10.8,2.1c-3.1,9.7-6.6,19.3-9.7,29c-0.9,2.1-0.6,5.6,2.4,5.2c3.3,0.3,8.6-2.8,10.2,1.6c0.3,3.9-3.4,6.6-6.7,7.7
|
|
36
|
-
c-5,1.5-10.3,1.9-15.4,0.9c-2.7-0.5-5.4-2.5-5.8-5.4c-0.4-3.8,0.7-7.6,1.8-11.2c3.1-9.3,6.3-18.5,9.4-27.7c-2.3-0.2-6.3,0.1-6.4-3.2
|
|
37
|
-
c-0.2-5.1,5.6-7.4,9.9-6.9C467,414.8,468.1,409,471.2,404.1z"/>
|
|
38
|
-
<path class="st0" d="M352.5,419.7c2.1-0.8,4.6-1,6.6,0c2.3,1.5,2,4.6,1.3,6.8c-4.3,12.9-8.7,25.7-13,38.5c-1.2,3.9-3.4,7.8-7.4,9.3
|
|
39
|
-
c-2.3,0.8-5.7,1-7.1-1.5c-1.3-2.6-0.1-5.5,0.7-8.1c4.3-12.4,8.4-24.9,12.7-37.3C347.4,424.4,349.3,421.1,352.5,419.7z"/>
|
|
40
|
-
<path class="st0" d="M393.4,419.5c7.1-1.1,15.3-0.9,21.1,3.9c4.3,3.5,5.7,9.3,5.3,14.6c-1.5,16.7-14.1,32.4-30.7,36.1
|
|
41
|
-
c-7.1,1.6-15.3,1.6-21.5-2.8c-4.9-3.4-6.9-9.7-6.4-15.4C362.8,438.7,376.1,422.5,393.4,419.5z M392.4,429.7
|
|
42
|
-
c-8.2,2.3-13.1,10.3-15.7,17.8c-1.4,4.5-2.5,10,0.4,14.2c3.3,3.9,9.2,3.5,13.5,1.7c7.4-3.3,12-10.8,14.1-18.4
|
|
43
|
-
c1.2-4.2,1.9-9.2-0.9-12.9C401.1,428.8,396.3,428.8,392.4,429.7z"/>
|
|
44
|
-
<path class="st0" d="M520.1,419c6-0.3,12.5,0.5,17.1,4.7c4.3,3.7,5.6,9.8,5,15.2c-1.3,10.3-6.5,20.1-14.4,26.9
|
|
45
|
-
c-7.9,6.8-18.6,10.4-29,8.9c-5.3-0.7-10.7-3.5-13.2-8.3c-3.5-6.3-2.1-14,0.2-20.5C490.9,431.4,504.5,419.8,520.1,419z M514.5,429.8
|
|
46
|
-
c-8.9,2.7-13.7,11.8-16.1,20.1c-1.1,4.4-1.5,10.1,2.5,13.2c4,2.7,9.5,1.8,13.6-0.4c7.5-4.2,11.6-12.5,13.3-20.6
|
|
47
|
-
c0.8-3.8,0.5-8.5-2.8-11.2C522,428.7,518,428.9,514.5,429.8z"/>
|
|
48
|
-
<path class="st0" d="M577.4,419.5c6.7-1,14.1-0.7,19.8,3.4c4.5,3.2,6.4,8.8,6.2,14.1c-1.1,17.7-14.7,34.4-32.5,37.5
|
|
49
|
-
c-6.5,1-13.8,1-19.5-2.8c-5.1-3.3-7.4-9.7-6.9-15.6C546.1,438.6,559.7,422.2,577.4,419.5z M575.5,429.8
|
|
50
|
-
c-7.9,2.4-12.7,10.1-15.3,17.5c-1.5,4.5-2.7,10.1,0.2,14.3c3.2,4.1,9.3,3.6,13.7,1.8c8-3.6,12.5-12.1,14.5-20.3
|
|
51
|
-
c0.9-3.9,1-8.7-2.1-11.7C583.6,428.7,579.1,428.9,575.5,429.8z"/>
|
|
52
|
-
<path class="st0" d="M657.6,419.9c6.3-1.3,13.1-1.4,19.3,0.6c3.8,1.3,7.5,4.2,7.8,8.5c0.2,5.1-5.5,9.4-10.4,7.6
|
|
53
|
-
c-3.1-1.9-3.3-6.6-6.7-8.1c-4.7-1.5-10.6-0.7-14,3c-1.8,1.8-1.8,5.3,0.8,6.3c7.4,3.8,17.1,3.4,22.9,10.1c3.5,4.2,1.3,10-1.2,14.1
|
|
54
|
-
c-5.3,9-16.1,12.8-26,13c-6.2,0.3-13.2-0.5-17.9-5c-3.8-3.7-3.6-10.8,1.1-13.8c2.2-1.7,6.6-2.5,7.9,0.7c1.1,3,1.8,6.6,5,8.1
|
|
55
|
-
c5.3,2.3,12.1,1.4,16.3-2.6c2.1-2,3-6.1,0.2-7.9c-6.7-3.8-15.2-3.7-21.1-8.9c-3-2.5-3.7-6.9-2.4-10.4
|
|
56
|
-
C641.9,427.2,649.6,421.8,657.6,419.9z"/>
|
|
57
|
-
<path class="st0" d="M423.5,460.6c2.9-1.3,7.3-1,8.8,2.4c2.1,7.4-8.2,15.6-14.6,10.5C414.3,468.7,418.8,462.4,423.5,460.6z"/>
|
|
58
|
-
<path class="st1" d="M169.3,126.2c10.8-0.6,21.6,0,32.4-0.3c-9,42.8-18.5,85.4-27.6,128.2c-2.1,10.4-5,20.8-4.8,31.5
|
|
59
|
-
c-11.6,0-23.1,0-34.7,0c3.4-8.4,6.3-17.1,8.1-26c7.6-35.2,15.2-70.4,22.8-105.5C167.4,144.8,169.7,135.6,169.3,126.2z"/>
|
|
60
|
-
<path class="st1" d="M227.3,130.5c8.8-3.9,20.1,2.8,20.5,12.4c1.2,7.9-5,15.6-12.9,16.5c-7.3,1.1-14.8-3.9-16.6-11
|
|
61
|
-
C216.3,141.4,220.4,133.1,227.3,130.5z"/>
|
|
62
|
-
<path class="st1" d="M38.6,181.4c10.4-1,20.9-0.4,31.4-0.3c12.7-0.2,25.3-0.1,38-0.1c5.8,0.1,11.7,0,17.2,2c4.3,1.6,7.6,5.4,8.3,10
|
|
63
|
-
c0.6,4.3,0.3,8.6-0.5,12.8c-2.7,11.8-5.4,23.6-8,35.5c-30.4,0.1-60.8,0-91.3,0c-1.7,8.9-4.7,17.6-5.5,26.7c-0.4,3.7,4.1,4.1,6.7,4.1
|
|
64
|
-
c19.7,0.1,39.4,0,59.1,0c8.1,0.1,16.3-0.3,24.3-1.8c-2.1,5-4.2,10.1-6.2,15.1c-30,0-60.1,0-90.1,0c-5.9-0.1-12.4-0.5-17.3-4.2
|
|
65
|
-
c-3.1-2.2-4.2-6.1-4.7-9.6v-5.8c2.5-14,6.2-27.7,9.2-41.6c2.9-11,4-22.9,10.5-32.6C23.9,185.4,31.3,182.1,38.6,181.4z M43,200.9
|
|
66
|
-
c-1.9,9-4.2,17.9-6,26.9c20.8,0.1,41.6,0,62.4,0c2-8.4,3.8-16.8,5.9-25.2c0.6-2.2,0.4-4.5,0.1-6.8c-2-0.8-4.2-1.5-6.4-1.4
|
|
67
|
-
c-16,0-31.9-0.1-47.9,0C47.2,194.2,43.7,197.1,43,200.9z"/>
|
|
68
|
-
<path class="st1" d="M212.3,180.9c10.2-0.2,20.3,0.3,30.5-0.1c-5.4,25.4-11.4,50.6-17,76c-2,9.4-4.9,18.9-4.6,28.6
|
|
69
|
-
c-10.9,0.1-21.8,0-32.8,0c3-7.1,5.7-14.4,7.4-22c4.5-19.4,9-38.8,13.4-58.2C210.8,197.2,212.6,189.1,212.3,180.9z"/>
|
|
70
|
-
<path class="st1" d="M389.4,181.1c10.2-0.3,20.4,0.1,30.5-0.2c-5.7,26.4-11.9,52.7-17.8,79.1c-1.8,8.4-4.1,16.8-3.9,25.5
|
|
71
|
-
c-10.9,0-21.8,0-32.8,0c3-7.3,5.8-14.7,7.4-22.4c4.2-18.2,8.4-36.5,12.6-54.7C387.5,199.4,389.7,190.4,389.4,181.1z"/>
|
|
72
|
-
<path class="st1" d="M449.3,181c9.1-0.2,18.2,0,27.2-0.1c-0.2,3.4-0.6,6.9-1,10.3c2.9-5.4,8.3-9.8,14.7-9.9
|
|
73
|
-
c10.3-0.4,20.5-0.5,30.8,0c2,3.9,4.4,7.5,6.1,11.5c-2.1,2.1-3.9,4.6-6.1,6.7c-1.6,0.3-3.3,0-4.9-0.2c-10.3-1.4-20.7-1-31.1-1.1
|
|
74
|
-
c-3.1,0-6.8,0.2-8.9,2.9c-2.5,3.4-2.9,7.8-3.9,11.8c-2.7,12.1-5.4,24.1-8.1,36.2c-2.5,12.1-6.3,24-6.3,36.5c-10.8,0-21.6,0-32.4,0
|
|
75
|
-
c3.5-7.6,5.4-15.8,7.4-24c4.3-18.8,8.5-37.6,12.8-56.3C447.5,197.2,449.6,189.2,449.3,181z"/>
|
|
76
|
-
</svg>
|