-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpast.html
More file actions
30 lines (25 loc) · 1.27 KB
/
past.html
File metadata and controls
30 lines (25 loc) · 1.27 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
---
layout: default
---
<script type="text/javascript">
document.getElementById('LNpast').id='leftcurrent';
</script>
<div class="contents">
{% assign sorted = (site.github.public_repositories | sort: 'name') %}
<h1>Previous Meetings</h1>
<ul>
{% for repository in sorted reversed %}{% if repository.has_pages %}{% unless repository.name contains 'github.io' %}{% if repository.name contains 'aistats' %}
<li>
<a href="{{ repository.name | prepend: site.baseurl }}"><b>AISTATS {{ repository.name | remove_first: "aistats" }}</b></a> {{ repository.description }}
</li>
{% endif %}{% endunless %}{% endif %}{% endfor %}
<li><a href="http://www.ics.uci.edu/~aistats/">AISTATS 2009</a> </li>
<li><a href="http://www.stat.umn.edu/%7Eaistat/">AISTATS 2007</a></li>
<li><a href="http://www.gatsby.ucl.ac.uk/aistats/index.html">AISTATS 2005</a></li>
<li><a href="http://research.microsoft.com/conferences/aistats2003/">AISTATS 2003</a></li>
<li><a href="http://www.gatsby.ucl.ac.uk/aistats/aistats2001/index.html">AISTATS 2001</a></li>
<li><a href="http://www.gatsby.ucl.ac.uk/aistats/workshops.html">AISTATS 1985-1999</a></li>
<br>
<li><a href="http://www.gatsby.ucl.ac.uk/aistats/society.html">Society for AI and Statistics</a></li>
</ul>
</div>