elixir-toolkit-theme 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 835140721cbcda81fe83a1ae4a85a1b049c459aebd069b3143fdbdb46673c0b6
4
- data.tar.gz: eb472bbf8edc2ddb7926b70c6867484ee19c935dc3285c15c673be7b09201b73
3
+ metadata.gz: '0600601393c70698c12c1ebcd200052b0d3a6aa9e3f9552b76a3967c13f1cba3'
4
+ data.tar.gz: 3ec4ec9a152dfff8aba2cbbc1e34b25ccaa4b04e328316701e01cd63462e7849
5
5
  SHA512:
6
- metadata.gz: '0796770b120d052558c0cd2130c5d01de009a8ab5c6886b6562f46a4b430c7c7d8d9ed9a22c741151c90d503b3292b3af8463c7c1e195c5b2c6b3a50b0fefe84'
7
- data.tar.gz: 774dd67da3fc8be7a5ddd7af6c6463aeae7e14077256df8891b34242880909b9b72e26685446618ac5283925c4429583e4ff6259725a69e00d832739b7161a7c
6
+ metadata.gz: c45a5c54607b33b33723a5064a54c1e442fe85c46802c1dd0bb787c580475443c9dbc0e7a306be1819a34e59d9cad2150f95b6935d151ea3da7ba6fdf569baa3
7
+ data.tar.gz: d83075c9c021cb721353c6c13d600369b0a633e8448c80faab0a6af86ba73bcb46c2a3b40e9bf43da1227f4730f814ff71b53f52cd5c37fa4bfc02f525006931
data/README.md CHANGED
@@ -1,41 +1,62 @@
1
- [![Gem Version](https://badge.fury.io/rb/elixir-toolkit-theme.svg)](https://badge.fury.io/rb/elixir-toolkit-theme)
1
+ [![Gem Version](https://badge.fury.io/rb/elixir-toolkit-theme.svg)](https://badge.fury.io/rb/elixir-toolkit-theme) [![Jekyll site CI](https://github.com/ELIXIR-Belgium/elixir-toolkit-theme/actions/workflows/jekyll.yml/badge.svg)](https://github.com/ELIXIR-Belgium/elixir-toolkit-theme/actions/workflows/jekyll.yml)
2
2
 
3
- # ELIXIR toolkit theme
3
+ <p align="center">
4
+ <img src="assets/img/main_logo.svg" width="100" float="center"/>
5
+ <h1 align="center">ELIXIR toolkit theme </h1>
6
+ </p>
4
7
 
5
- This repository is used to build a flexible Jekyll theme using bootstrap 5 as CSS framework.
8
+ The ELIXIR toolkit theme is a Jekyll theme designed to support easy deployment of documentation websites but also more complex ones that require a central tool table and linking towards ELXIR resources.
6
9
 
7
- ## Used packages:
10
+ Its key features:
11
+ - Easy deployment using GitHub pages
12
+ - Advanced content search
13
+ - Create your own look with the many theme variables
14
+ - Change style using custom classes
15
+ - Support for a central tools table
16
+ - Page tagging and listing of those tagged pages
17
+ - Linking to ELIXIR resources including Bio.tools, FAIRSHARING, FAIR Cookbook, TeSS and DSW
18
+ - Easy side navigation, top navigation and footer management
19
+ - Mobile friendly
20
+ - Create website sections with each section having its own sidebar
21
+ - Out of the box search engine optimizations including schema.org attributes and many other matadata attributes
22
+ - Support for Google Analytics and Plausible
8
23
 
9
- - [Bootstrap5](https://github.com/twbs/bootstrap)
10
- - [DataTables](https://datatables.net/examples/styling/bootstrap5.html)
11
- - [AnchorJS](https://www.bryanbraun.com/anchorjs/)
12
- - [lunr.js](https://lunrjs.com/)
13
- - [jQuery](https://jquery.com/)
14
- - [jekyll-table-of-contents](https://github.com/ghiculescu/jekyll-table-of-contents)
15
- - [jQuery Navgoco Menus](https://github.com/tefra/navgoco)
24
+ ## Installation
16
25
 
26
+ ### via GitHub Pages remote theme
17
27
 
18
- ## Using Jekyll
28
+ The quickiest way to use Just The Docs is to use GitHub pages [remote theme](https://blog.github.com/2017-11-29-use-any-theme-with-github-pages/) feature in your `config.yml` file:
19
29
 
20
- The website is build on GitHub using Jekyll, a simple, static site generator based on ruby. When you have a local copy cloned onto your computer, it is possible to generate the website based on this repo. This makes it possible to preview changes live, every time you save a file from within the GitHub jekyll-bootstrap-theme repo. Follow these steps to deploy the website based on your local clone (copy) of the jekyll-bootstrap-theme repo:
21
-
22
- Make sure you have cloned the jekyll-bootstrap-theme repo:
30
+ ```yaml
31
+ remote_theme: ELIXIR-Belgium/elixir-toolkit-theme
32
+ ```
33
+ ### via RubyGems:
23
34
 
24
- git clone git@github.com:USERNAME/jekyll-bootstrap-theme.git
25
- cd jekyll-bootstrap-theme
35
+ Alternatively you can install it as a Ruby Gem (preferred way if you use GitLab).
26
36
 
37
+ Add this line to your Jekyll site's Gemfile:
27
38
 
28
- To run the website locally, you can either use [Docker](https://www.docker.com/) or use Jekyll directly after installing various dependencies.
39
+ ```ruby
40
+ gem "elixir-toolkit-theme"
41
+ ```
29
42
 
30
- ### Run using Docker
43
+ And add this line to your Jekyll site's `_config.yml`:
31
44
 
32
- If not already installed on your machine, install Docker. From the root of the ``jekyll-bootstrap-theme`` directory, run:
45
+ ```yaml
46
+ theme: elixir-toolkit-theme
33
47
  ```
34
- docker run -it --rm -p 4000:4000 -v $PWD:/srv/jekyll jekyll/jekyll:latest /bin/bash -c "chmod a+w /srv/jekyll/Gemfile.lock && chmod 777 /srv/jekyll && jekyll serve -w"
35
- ```
36
- This will start the docker container and serve the website locally.
37
48
 
38
- ### Run using Jekyll directly
49
+ ## Usage
50
+
51
+ [View the documentation](https://elixir-belgium.github.io/elixir-toolkit-theme/) for usage information.
52
+
53
+ ## Deployment
54
+
55
+ ### Using GitHub pages
56
+
57
+ This theme can be used to deploy the website using GitHub pages. Visit the [GitHub documentation](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/) to find out more about how to setup GitHub pages.
58
+
59
+ ### Locally using Jekyll
39
60
 
40
61
  1. If not already present on your machine, install ruby. Note that incompatibility issues may arise with ruby 3.0.0 (released 25.12.20) or newer versions.
41
62
 
@@ -64,3 +85,40 @@ If you have never installed or run a Jekyll site locally on your computer, follo
64
85
 
65
86
  Additional information can be found at the following link: [https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll](https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll)
66
87
 
88
+
89
+ ### Using Docker
90
+
91
+ If not already installed on your machine, install Docker. From the root of the `elixir-toolkit-theme` directory, run:
92
+
93
+ ```
94
+ docker run -it --rm -p [::1]:4000:4000 -v $PWD:/srv/jekyll jekyll/jekyll:latest /bin/bash -c "chmod a+w /srv/jekyll/Gemfile.lock && chmod 777 /srv/jekyll && bundle install && bundle exec jekyll serve --host 0.0.0.0"
95
+ ```
96
+
97
+ This will start the docker container and serve the website locally. Make sure the `.\_site` is not yet created to avoid permission errors.
98
+
99
+ ## This theme is known to be used in:
100
+
101
+ - [RDMkit](https://rdmkit.elixir-europe.org/)
102
+ - [RDMGuide](https://rdm.elixir-belgium.org/)
103
+ - [Infectious Diseases Toolkit](https://www.infectious-diseases-toolkit.org/)
104
+ - [Applied Bioinformatics and Biostatistics intranet page](https://intranet.psb.ugent.be/abb/)
105
+
106
+
107
+ ## Used packages
108
+
109
+ This theme would not be possible without following open source projects:
110
+
111
+ - [Bootstrap5](https://github.com/twbs/bootstrap) - As main CSS framework
112
+ - [DataTables](https://github.com/DataTables/DataTablesSrc) - To generate tables that are sortable, searchable and contain pagination
113
+ - [AnchorJS](https://github.com/bryanbraun/anchorjs) - Adds deep anchor links to the headings
114
+ - [lunr.js](https://github.com/olivernn/lunr.js) - Main tool behind the search bar enabling content search
115
+ - [jQuery](https://github.com/jquery/jquery) - A fast, small, and feature-rich JavaScript library for easy scripting
116
+ - [jekyll-table-of-contents](https://github.com/ghiculescu/jekyll-table-of-contents) - Lightweight JS script to render the table of contents
117
+ - [jQuery Navgoco Menus](https://github.com/tefra/navgoco) - Multi-level slide navigation with accordion effect
118
+ - [Font-Awesome](https://github.com/FortAwesome/Font-Awesome) - The famous icon library
119
+ - [flag-icons](https://github.com/lipis/flag-icons) - A curated collection of all country flags in SVG + css integration
120
+
121
+ ## License
122
+
123
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
124
+
@@ -1,12 +1,12 @@
1
1
  {%- assign alllogos = site.data.affiliations %}
2
- <div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 g-5 my-3">
2
+ <div class="affiliation-tiles row row-cols-2 row-cols-sm-3 row-cols-md-4 g-5 my-3">
3
3
  {%- assign filtered_logos = alllogos | where: "type", include.type %}
4
4
  {%- for affiliation in filtered_logos %}
5
5
  {%- if affiliation.image_url and affiliation.expose == true %}
6
6
  <div class="col">
7
7
  <div class="card h-100 border-0">
8
8
  <div class="my-auto">
9
- {% if affiliation.url %}<a href="{{ affiliation.url }}">{% endif %}<img class="card-img-top" src="{{ affiliation.image_url | relative_url }}" alt="{{ affiliation.name }}">{%- if affiliation.url %}</a>{% endif %}
9
+ {% if affiliation.url %}<a href="{{ affiliation.url }}">{% endif %}<img class="rounded" src="{{ affiliation.image_url | relative_url }}" alt="{{ affiliation.name }}">{%- if affiliation.url %}</a>{% endif %}
10
10
  </div>
11
11
  </div>
12
12
  </div>
@@ -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 h-40px" src="assets/img/tess_logo.svg">
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 h-40px" src="assets/img/fairplus.svg">
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 h-40px" src="assets/img/dsw-compact.svg">
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.fairsharing }}">
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="fairsharing logo" class="img-fluid h-40px" src="assets/img/FAIRsharing-small.svg">
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.title}}</span>
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>
@@ -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
- {%- if section_page.description %}
23
- <td>{{section_page.description}}</td>
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 %}
@@ -10,20 +10,18 @@
10
10
  {{ page.sidebar | capitalize | replace: "_", " " }} menu <i title="navbar-toggler" class="fa fa-bars ms-2"></i>
11
11
  </button>
12
12
  <nav class="collapse" id="side-nav" aria-label="Side navigation">
13
- <ul id="menu" class="list-unstyled mb-4 mb-lg-0">
14
- {%- if sidebar.title or sidebar.version %}
15
- {%- if sidebar.title_url and page.url == sidebar.title_url %}
16
- <li class="sidebar-title active">
17
- {%- else %}
18
- <li class="sidebar-title">
19
- {%- endif %}
20
- {%- if sidebar.title_url %}
21
- <a class="btn active hover-primary text-start d-block mb-1" href="{{ sidebar.title_url | relative_url }}">{{sidebar.title}} {{sidebar.version}}</a>
22
- {%- else %}
23
- <a class="btn active hover-primary text-start d-block mb-1 disabled" aria-disabled="true">{{sidebar.title}} {{sidebar.version}}</a>
24
- {%- endif %}
25
- </li>
26
- {%- endif %}
13
+ {%- if sidebar.title or sidebar.version %}
14
+ {%- if sidebar.title_url %}
15
+ {%- if page.url == sidebar.title_url %}
16
+ <a class="btn hover-primary text-start d-block mb-1 sidebar-title active" href="{{ sidebar.title_url | relative_url }}">{{sidebar.title}} {{sidebar.version}}</a>
17
+ {%- else %}
18
+ <a class="btn hover-primary text-start d-block mb-1 sidebar-title" href="{{ sidebar.title_url | relative_url }}">{{sidebar.title}} {{sidebar.version}}</a>
19
+ {%- endif %}
20
+ {%- else %}
21
+ <a class="btn text-start d-block mb-1 sidebar-title disabled" aria-disabled="true">{{sidebar.title}} {{sidebar.version}}</a>
22
+ {%- endif %}
23
+ {%- endif %}
24
+ <ul class="list-unstyled mb-4 mb-lg-0">
27
25
  {%- for folder in sidebar.subitems %}
28
26
  {%- if page.url == folder.url %}
29
27
  <li class="active{%- if folder.hr %} mt-3{% endif %}">
@@ -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="me-3 img-fluid" alt="{{site.title}} logo" src="{{ 'assets/img/main_logo.svg' | relative_url }}">{% if site.topnav_title %}<span class="me-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>
data/assets/css/main.scss CHANGED
@@ -44,6 +44,10 @@ main {
44
44
 
45
45
  a:not(.btn):hover {
46
46
  text-decoration: underline;
47
+ overflow-wrap: break-word;
48
+ word-wrap: break-word;
49
+ -ms-word-break: break-all;
50
+ word-break: break-word;
47
51
  }
48
52
 
49
53
  ol li,
@@ -271,7 +275,7 @@ header .navbar {
271
275
  background-color: $sidebar-bg-active;
272
276
  }
273
277
 
274
- ul#menu {
278
+ #side-nav>ul {
275
279
  > li:not(.sidebar-title) > a {
276
280
  background-color: $sidebar-bg;
277
281
  color: $sidebar-color;
@@ -571,10 +575,6 @@ footer {
571
575
 
572
576
  /*-----Size components-----*/
573
577
 
574
- .h-40px {
575
- height: 40px;
576
- }
577
-
578
578
  .h-24px {
579
579
  height: 24px;
580
580
  }
@@ -630,6 +630,10 @@ li.past_event,
630
630
  color: $white !important;
631
631
  }
632
632
  }
633
+ img {
634
+ height: 40px;
635
+ max-width: 45px;
636
+ }
633
637
  }
634
638
 
635
639
  /*-----Country flags-----*/
@@ -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/main.js CHANGED
@@ -31,7 +31,7 @@ $(document).ready(function external_new_window() {
31
31
  */
32
32
  $(document).ready(function () {
33
33
  // Initialize navgoco with default options
34
- $("#menu").navgoco({
34
+ $("#side-nav>ul").navgoco({
35
35
  caretHtml: '',
36
36
  accordion: true,
37
37
  openClass: 'active', // open
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.7.0
4
+ version: 1.8.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-08 00:00:00.000000000 Z
11
+ date: 2022-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -440,15 +440,14 @@ files:
440
440
  - assets/flags/za.svg
441
441
  - assets/flags/zm.svg
442
442
  - assets/flags/zw.svg
443
- - assets/img/FAIRsharing-small.svg
444
443
  - assets/img/Flag_of_Europe.svg
445
444
  - assets/img/android-chrome-192x192.png
446
445
  - assets/img/android-chrome-512x512.png
447
446
  - assets/img/apple-touch-icon.png
448
- - assets/img/bio.tools.svg
449
- - assets/img/dsw-compact.svg
447
+ - assets/img/dsw_compact_logo.svg
450
448
  - assets/img/elixir_logo.svg
451
- - assets/img/fairplus.svg
449
+ - assets/img/fairplus_compact_logo.svg
450
+ - assets/img/fairsharing_compact_logo.svg
452
451
  - assets/img/favicon-16x16.png
453
452
  - assets/img/favicon-32x32.png
454
453
  - assets/img/favicon.ico
@@ -456,6 +455,7 @@ files:
456
455
  - assets/img/jekyll_theme_question_inverted.svg
457
456
  - assets/img/main_logo.svg
458
457
  - assets/img/main_logo_condesed.svg
458
+ - assets/img/rdmkit_compact_logo.svg
459
459
  - assets/img/safari-pinned-tab.svg
460
460
  - assets/img/site.webmanifest
461
461
  - assets/img/tess_logo.svg
@@ -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>