-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
101 lines (95 loc) · 3.54 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
---
layout: default
#title: About
permalink: /
---
<div class="center">
<h1 class="title"><span class="accent">G</span>enome <span class="accent">I</span>nformatics <span class="accent">S</span>ection</h1>
<h4>Our section develops and applies computational methods for the analysis of massive genomics datasets, focusing on the challenges of genome sequencing and comparative genomics. We aim to improve such foundational processes and translate emerging genomic technologies into practice.</h4>
<!-- <b><a href="{{ site.baseurl }}/jobs2019/">We are hiring! Click here for more info...</a></b> -->
</div>
{% if site.people %}
{% assign count = site.people.size %}
<div class="section">
{% include title-bar.html title="People" %}
<div class="see-all"><a href="{{ site.baseurl }}/people">see all members</a></div>
<div style="text-align: center;margin-top:15px;">
{% include person-list-start.html %}
{% assign sortedpeople = site.people | sort: "display_order" %}
{% for p in sortedpeople %}
{% unless p.alum %}
{% include person-list-item.html url=p.url portrait=p.portrait name=p.name size=60 inits="yes" %}
{% endunless %}
{% endfor %}
{% include person-list-end.html %}
</div>
</div>
{% endif %}
{% if site.posts.size > 0 %}
{% assign post = site.posts.first %}
{% assign count = site.posts.size %}
<div class="section">
{% include title-bar.html title="News" %}
{% include see-all.html name="news posts" link="news" count=count %}
{% for post in site.posts limit:site.data.settings.landing-news-posts %}
<div class="post">
<div style="float:right;">
{% include person-list-start.html %}
{% for p in site.people %}
{% assign key = p.title | downcase %}
{% if post.authors contains key %}
{% include person-list-item.html url=p.url portrait=p.portrait name=p.name size=40 inits='yes' %}
{% endif %}
{% endfor %}
{% include person-list-end.html %}
</div>
<h3 class="mainHeading">{{ post.title }}</h3>
<div style="color: gray;">{{ post.date | date: "%B %e, %Y" }}</div>
{% if post.excerpt.size != post.content.size %}
<div class="postBody excerpt">
{% else %}
<div class="postShort excerpt">
{% endif %}
{{ post.excerpt }}
</div>
{% if post.excerpt.size != post.content.size %}
<div class="linkMore">
<a href="{{ site.baseurl }}{{ post.url }}">{% include post-link-more.html %}</a>
</div>
{% endif %}
</div>
{% endfor %}
</div>
{% endif %}
{% if site.data.publications %}
{% assign array = "" | split: "" %}
{% for pair in site.data.publications %}
{% assign array = array | push: pair[1] %}
{% endfor %}
{% assign sorted = array | sort: "date" | reverse %}
{% assign count = site.data.publications.size %}
<div class="section">
{% include title-bar.html title="Publications" %}
{% include see-all.html name="publications" link="publications" count=count %}
{% for pub in sorted limit: site.data.settings.landing-pubs %}
{% include publication.html pub=pub %}
{% endfor %}
</div>
{% endif %}
{% if site.data.settings.landing-software %}
{% assign count = site.projects.size %}
<div class="section">
{% include title-bar.html title="Software" %}
{% include see-all.html name="projects" link="projects" count=count %}
{% for query in site.data.settings.landing-software %}
{% for proj in site.projects %}
{% unless proj.retired %}
{% assign key = proj.title | downcase %}
{% if key == query %}
{% include project.html proj=proj %}
{% endif %}
{% endunless %}
{% endfor %}
{% endfor %}
</div>
{% endif %}