-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (84 loc) · 4.04 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
---
layout: default
---
<div class="home">
<div id="intro" class="intro">
</br>
<div class="row">
<div class="col-md-5">
<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>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<a href=""><img id="de" src="https://imgur.com/rM7JCdR.gif" alt="droso-larva"></a>
<!--http://bioinformatics.oxfordjournals.org/content/suppl/2012/09/04/bts543.DC1/supplementary_methods.pdf-->
<div class="carousel-caption">
<p><i>Drosophila</i> larva</p>
</div>
</div>
<div class="item">
<a href=""><img src="https://i.imgur.com/2xJOcnC.gif" alt="cele-embryo"></a>
<div class="carousel-caption">
<p><i>C. elegans</i> embryo</p>
</div>
</div>
<div class="item">
<a href=""><img src="https://i.imgur.com/PzjwQND.gif" alt="cele-nuclei"></a>
<div class="carousel-caption">
<p><i>C. elegans</i> nuclei</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-md-7 lab-description-section">
<h1 class="page-heading">Welcome!</h1>
<p>Our lab combines light & electron microscopy, transcription imaging and deep sequencing with computer vision and software development. We develop tools and solutions in order to study and model transcriptional regulation in development using <i>C. elegans</i> and other major model organisms.</p>
<p>We develop software in the context of ImgLib2, Fiji, and BigDataViewer and provide it open-source to the community.</p>
<p>Our lab is a part of the <a href="https://www.mdc-berlin.de/bimsb" target="_blank">Berlin Institute of Medical System Biology (BIMSB)</a>, <a href="https://www.mdc-berlin.de/en" target="_blank">MDC, Berlin</a>.</p>
</div>
</div>
</br>
</div>
</br>
<div class="lab-updates full-width">
</br>
<div class="container">
<h1 class="page-heading">Lab Updates:</h1>
<div class="row inline-block-row">
{% for post in site.posts limit:9 %}<div class="col-md-4 col-sm-6">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h4 class="post-header-index"><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<div class="post-excerpt-index">{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
{% capture content_words %}
{{ post.content | number_of_words }}
{% endcapture %}
{% capture excerpt_words %}
{{ post.excerpt | number_of_words }}
{% endcapture %}
{% if excerpt_words != content_words %}
<a href="{{ post.url | prepend: site.baseurl }}">Read more</a>
{% endif %}</div>
</div>{% endfor %}
<a href="{{ site.baseurl }}/all_posts">View all lab updates</a>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="javascripts/bootstrap.min.js"></script>