-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (82 loc) · 2.79 KB
/
index.html
File metadata and controls
86 lines (82 loc) · 2.79 KB
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
---
layout: default
title: Minh Bui Lab @ ANU
subtitle: Computational Phylogenomics
subsubtitle: Enable evolutionary research in the genomic era
---
<script type='text/javascript' src='https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js'></script>
<script async src="https://badge.dimensions.ai/badge.js" charset="utf-8"></script>
<div class="jumbotron jumbotron-fluid" style="background-color: {{site.data.style.main_color}}; text-align: center;">
<h1 class="display-4">{{page.title}}</h1>
<h2>{{page.subtitle}}</h2>
<img src="/assets/images/minh-lab-logo.svg" width="200">
<h3>{{page.subsubtitle}}</h3>
</div>
<div class="container">
<div class="row">
<div class="col-sm">
<div class="list-group">
<div class="list-group-item list-group-item-primary">
<h3>Our mission</h3>
We combine efficient bioinformatic methods and
advanced models of molecular evolution for
phylogenetic inference from ultra-large genomic data.
<br><a href="{{site.baseurl}}/research/">→More about our research</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="list-group">
<div class="list-group-item list-group-item-warning">
<h3>News</h3>
{% for post in site.categories['news'] limit:3 %}
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a><br>
{% endfor %}
<a href="{{site.baseurl}}/news/">→More news</a>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-sm">
<div class="list-group">
<div class="list-group-item list-group-item-info">
<h3>Software</h3>
<a href="http://www.iqtree.org">IQ-TREE</a> is our flagship software that implements new models and methods
developed other the years.
<br><a href="{{site.baseurl}}/software/">→more</a>
</div>
</div>
</div>
<div class="col-sm">
<div class="list-group">
<div class="list-group-item list-group-item-danger">
<h3>Join us</h3>
{% for post in site.categories['join'] limit:3 %}
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a><br>
{% endfor %}
<a href="{{site.baseurl}}/join/">→More job details</a>
</div>
</div>
</div>
</div>
</div>
<br>
<div style="background: {{site.data.style.minor_color}};">
<div class="container">
<br>
<h3>Selected publications</h3>
<ol>
{% assign person_pages = site.pages | where: "layout" , "personnel" | where: "current", "true" %}
{% assign members = person_pages | map: "pubname" %}
{% assign selected_pubs = site.data.publications.references | where: "selected", "true" %}
{% for pub in selected_pubs %}
<li>
{% include publication.html %}
</li>
{% endfor %}
</ol>
<a href="{{site.baseurl}}/publications/">→All publications</a>
</div>
</div>