-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (39 loc) · 1.41 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
---
title: Home
layout: default
---
<div class="container alt">
<section>
<div class="col-100">
<h2>Welcome to the Bioinformatics Lab</h2>
<p>We develop and implement methods for high throughput data evaluation. With a special focus on computational proteomics. We are located in the <a href="http://www.bio.uni-kl.de/molekulare-biotechnologie/start/">Department of Molecular Biotechnology and Systems Biology</a> at the <a href="http://www.uni-kl.de/">Technische Universität Kaiserslautern</a></p>
<p>
Our research aims on understanding acclimation processes of chlamydomonas reinhardtii, a single-cell green alga.
</p>
</div>
</section>
</div><!-- .container -->
<div class="container">
<section>
<div class="col-75">
{% for post in site.posts limit:1 %}
<article class="post">
<h3 class="title">
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
<p class="excerpt">{{ post.excerpt }}</p>
<div class="meta">
<div class="date">{{ post.date | date_to_string }}</div>
{% if post.tags %}
<ul class="tags">
{% for tag in post.tags %}
<li><a href="{{ site.url }}/{{ tag }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div><!-- .meta -->
</article>
{% endfor %}
</div><!-- .col -->
</section>
</div><!-- .container -->