forked from elixir-europe/infectious-diseases-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (106 loc) · 5.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
search_exclude: true
layout: none
---
<!doctype html>
<html lang="en">
{% include head.html %}
<body>
{% if jekyll.environment == "development" %}{% include dev-info.html %}{% endif %}
{% include topnav.html search=false %}
<section class="container mb-5">
<div class="card bg-red text-center text-white">
<div class="card-body">
<h5 class="card-title fs-3"><b>This website is under construction</h5></b>
<p class="card-text">Don't hesitate to <a class="link-body-emphasis" href="https://github.com/elixir-europe/infectious-diseases-toolkit/issues"><b>open an issue</b></a> or to contact us by mail using <a class="link-body-emphasis" href="mailto:[email protected]"><b>[email protected]</b></a> to give some early feedback.</p>
</div>
</div>
</section>
<div class="landingpage">
<section class="container mb-5">
<div>
<p class="text-center lead">Find tools and guidelines to help you access, analyse and share infectious disease data, and respond quickly to disease outbreaks.
</p>
</div>
</section>
<section id="search-section" class="bg-light py-5">
<div class="container">
<div class="row">
<h2 class="no-anchor text-center mb-3">What can we help you find?</h2>
<div class="position-relative">
<div class="d-flex justify-content-center">
<form role="search" class="input-group">
<span class="input-group-text" id="search-label"><i class="fa-solid fa-magnifying-glass"></i></span>
<input type="search" id="search-input" class="search-input form-control form-control-lg bg-white" tabindex="0"
placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off">
</form>
<div id="search-results" class="search-results"></div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-light pb-5">
<div class="container">
<h2 class="no-anchor text-center mb-3">Browse all topics by</h2>
{%- assign sidebar = site.data.sidebars[page.sidebar] %}
<div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 g-4">
{%- for folder in sidebar.subitems %}
<div class="col">
<div class="card bg-white h-100">
{%- if folder.image_url%}
<img src="{{folder.image_url | relative_url}}" class="card-img-top h-icon-5 mx-auto" alt="{{folder.title}} icon">
{%- endif %}
<div class="card-body text-center">
<a href="{{ folder.url | relative_url }}" class="stretched-link">
<h3 class="card-title no-anchor text-dark">{{folder.title}}</h3>
</a>
<p class="card-text">{{folder.description}}</p>
</div>
</div>
</a>
</div>
{%- endfor %}
</div>
</div>
</section>
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-2 my-auto">
<img class="h-icon-6" src="{{ '/assets/img/section-icons/users-duotone.svg' | relative_url }}" alt="Contributors icon">
</div>
<div class="col-lg-7">
<h2>We welcome contributors!</h2>
<p>This project would not be possible without the many <a href="{{ '/about/contributors' | relative_url }}"><b>amazing
community contributors</b></a>. The infectious diseases toolkit is an open community project, and you are welcome to join us!
</p>
</div>
<div class="col-lg-3 my-auto">
<a class="btn btn-primary btn-lg rounded-pill" href="{{ '/contribute/' | relative_url }}">Start contributing</a>
</div>
</div>
</div>
</section>
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-6">
{% include news.html caption=true title=true limit=3 caption_url="/about/news" %}
</div>
<div class="col-lg-6 mt-3 mt-lg-0">
{% include events.html caption=true title=true event_type="upcoming_event" caption_url="/about/events" %}
</div>
</div>
</div>
</section>
</div>
{%- if site.theme_variables.back_to_top or site.theme_variables.back_to_top == nil %}
<button id="back-to-top" class="btn btn-primary" type="button" aria-hidden="true" onclick="topFunction()">
<i class="fa-solid fa-arrow-up"></i>
</button>
{%- endif %}
{% include footer.html %}
{% include cookie-popup.html %}
</body>
</html>