-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeetings.html
executable file
·58 lines (50 loc) · 2.43 KB
/
meetings.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
---
layout: page
title: Lab Meetings
permalink: /meetings/
---
{% assign site_year = site.time | date: "%Y" %}
{% assign site_day = site.time | date: "%j" %}
<div class="home">
<p>
Our weekly meetings involve discussion of papers related to population or quantitative genetics, molecular evolution, plant evolution, DNA sequencing, and computational biology.
Everyone is welcome to attend! You’ll even get a chance to lead the discussion!
Participants in our lab meeting are also tracking relevant journals that cover genetics, genomics and evolutionary biology.
</p><br />
<p>
During spring 2024, meetings are every <b>Friday</b> from <b>9:00 - 10:00 AM</b> <strike>in 409 Borlaug Hall</strike>. For the time being, we are moving to remote meetings. Here is the <b><a href="https://umn.zoom.us/j/91226097732" rel="externel">Zoom join link</a></b> for meeting ID 912 2609 7732.
</p><br />
<p>
For a list of classic papers, see our <a href="http://morrelllab.github.io/classics/index.html" rel="external">Reading the Classics page</a>.
</p><br>
<hr />
<h2>Meeting Schedule</h2>
<ul class="posts">
<br />
{% for post in site.meetings %}
{% assign post_year = post.meet_date | date: "%Y" %}
{% assign post_day = post.meet_date | date: "%j" %}
{% if post_year > site_year or post_year == site_year and post_day >= site_day %}
<li>
<span class="post-date">{{ post.meet_date | date: "%b %-d, %Y" }} - Lead by {{ post.leader }}</span>
<a href="{{ post.paper_url }}">{{ post.paper_title }}</a> <br />
<span class="post-content">{{ post.paper_author }} ({{ post.paper_year }}). {{post.paper_journal }}.</span>
</li>
{% endif %}
{% endfor %}
</ul><br />
<a href="../previous/index.html">Previous Meetings</a>
</div>
<!-- Start Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19694768-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- End Google Analytics -->
<!-- -->