-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
117 lines (102 loc) · 5.85 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
110
111
112
113
114
115
116
117
---
layout: default
---
<div class='container'>
<header class="masthead text-center">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
<li data-target="#myCarousel" data-slide-to="6"></li>
<li data-target="#myCarousel" data-slide-to="7"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<a href="https://librehub.github.io/about/" target="_blank"><img src="/images/people/LIBREHub_Team_2024.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2023/08/01/mri-data-ws.html" target="_blank"><img src="/images/others/MRI_2.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2023/07/21/strobeillum-ws.html" target="_blank"><img src="/images/others/SEMS_1.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2023/07/21/strobeillum-ws.html" target="_blank"><img src="/images/others/SEMS_2.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2022/11/18/openflexure-ws.html" target="_blank"><img style="max-width:100%;" src="/images/others/OFM_1.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2022/11/18/openflexure-ws.html" target="_blank"><img style="max-width:100%;" src="/images/others/OFM_2.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2023/07/27/napari-ws.html" target="_blank"><img style="max-width:100%;" src="/images/others/NAPARI_1.jpg" alt="workshop"></a>
</div>
<div class="item">
<a href="https://librehub.github.io/2022/05/23/benedict-diederich.html" target="_blank"><img style="max-width:100%;" src="/images/others/UC2_1.png" alt="seminar"></a>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
<span style="display: block; margin-bottom: 2em"></span>
<p>
<i>The <strong>Latin American Hub for Bioimaging Through Open Hardware (LIBRE Hub)</strong> is a training network for open source bioimaging hardware in Latin America with the goal to empower regional researchers through practical workshops, seminars, networking, and online resources adapted to local needs and re-published in local languages.</i>
<span style="display: block; margin-bottom: 3em"></span>
<a href="https://github.com/librehub"><i class="fa fa-github"></i> GitHub</a>
<a href="https://www.youtube.com/channel/UCKaffupDA8KKrDE0rd668Xw"><i class="fa fa-youtube"></i> YouTube</a>
<a href="https://www.flickr.com/photos/197037882@N02/albums"><i class="fa fa-flickr"></i> Flickr</a>
<a href="https://www.linkedin.com/company/librehub/"><i class="fa fa-linkedin"></i> LinkedIn</a>
<a href="mailto:[email protected]"><i class="fa fa-envelope-o"></i> [email protected]</a>
</p>
<!-- Suscribe box -->
<div class="w3-container" style=" background: #f0f8ff; padding: 25px; border-radius:10px; border: 1px solid #5d8aa8">
<div style="text-align:center">
<h3> Be up to date! </h3>
<span style="display: block; margin-bottom: 1em"></span>
<p>
Sign up for our monthly newsletter and receive updates on
our latest workshops, seminars, and publications.
</p>
<span style="display: block; margin-bottom: 1em"></span>
<a href="https://mailchi.mp/2efa11be3d6b/libre_hub" target="_blank"><button style="width:200px">Subscribe</button></a>
</div >
</div>
<span style="display: block; margin-bottom: 3em"></span>
<!-- Latest news box -->
<div class="w3-container" style=" background: #f0f8ff; padding: 25px; border-radius:10px; border: 1px solid #5d8aa8">
<div style="text-align:left">
<h3> Lastest News </h3>
<span style="display: block; margin-bottom: 1em"></span>
<div class="news">
{% capture now %}{{'now' | date: '%s' | minus: 0 %}}{% endcapture %}
<ul style="list-style-position:outside;padding:20px" >
{% for new in site.data.news %}
{% capture date %}{{new.date | date: '%s' | plus: 0 %}}{% endcapture %}
{% if date < now %}
<li>
<span>
{{ new.details }}
</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div >
</div>
</header>
</div>