-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.html
116 lines (106 loc) · 4.35 KB
/
events.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>FAIRDOM</title>
<link rel="stylesheet" href="css/foundation.css"/>
<link rel="stylesheet" href="css/fairdom.css">
<link rel="stylesheet" href="css/events.css">
<link rel="shortcut icon" href="img/favicon.ico"/>
<script src="js/vendor/modernizr.js"></script>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
</head>
<body>
<nav class="top-bar" data-topbar role="navigation" data-options="is_hover: false">
<ul class="title-area">
<li class="name"></li>
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li><a href="events.html">Events</a></li>
<li><a href="about_us.html">About Us</a></li>
<li><a href="http://fair-dom.org/wiki/foundry/">Data Management Foundry</a></li>
<li><a href="/wiki">Wiki</a></li>
<li class="has-dropdown">
<a href="#">Software</a>
<ul class="dropdown">
<li><a href="http://seek4science.org">SEEK</a></li>
<li><a href="http://www.cisd.ethz.ch/software/openBIS">OpenBIS</a></li>
<li><a href="http://rightfield.org.uk">RightField</a></li>
</ul>
</li>
</ul>
</section>
</nav>
<div class="row left">
<div class="small-3 columns">
<a href="/">
<img id="logo" src="img/logo-120.png"/>
</a>
</div>
<div class="small-9 columns">
<p id="opening_text">
Upcoming events related to FAIRDOM, our community and activities.
</p>
</div>
</div>
<div class="row left event">
<div class="small-12 columns">
</div>
</div>
<div class="row left event">
<div class="small-12 columns">
<div class="event-title">
Whole-cell modeling summer school, Rostock, Germany
</div>
<div class="event-date">
9-13th March 2015
</div>
<p class="event-description">
The primary aim for the participants of the summer school is to learn about standards for modelling and simulation in computational biology. But a secondary aim is to enjoy modelling, coding and diagramming the whole-cell model using openly available software and COMBINE standards.
<br/>
<a href="https://sites.google.com/site/vwwholecellsummerschool">https://sites.google.com/site/vwwholecellsummerschool</a>
</p>
</div>
</div>
<div class="row left event">
<div class="small-12 columns">
<div class="event-title">
Galaxy community conference, Norwich, UK
</div>
<div class="event-date">
6-8th July 2015
</div>
<p class="event-description">
The 2015 Galaxy Community Conference (GCC2015) will be held at the John Innes Center, in Norwich, UK, 6-8th July, 2015<br/>
Galaxy Community Conferences are an opportunity to participate in presentations, discussions, poster sessions, lightning talks and birds-of-a-feather gatherings, all about high-throughput biology and the tools that support it.<br/>
The conference also included a Training Day offering in-depth topic coverage, across several concurrent sessions.
<br/>
<a href="http://gcc2015.tsl.ac.uk">http://gcc2015.tsl.ac.uk</a>
<br/>
<a href="https://wiki.galaxyproject.org/Events">https://wiki.galaxyproject.org/Events</a>
</p>
</div>
</div>
<script>
$(document).foundation();
</script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://www.sysmo-db.org/piwik/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "12"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
</body>
</html>