-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
145 lines (113 loc) · 4.78 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
---
layout: default
title: Klavins Lab
---
<div id="home">
<br />
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval=5000 style="margin: auto">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/gro-big.png" class='main-image'>
<div class="carousel-caption">
<h1>Multicellular</h1>
<h2>Design</h2>
</div>
</div>
<div class="item inactive">
<img src="images/bistable-time.png" class='main-image'>
<div class="carousel-caption">
<h1>Synthetic</h1>
<h2>State</h2>
</div>
</div>
<div class="item inactive">
<img src="images/auxinyeast.png" class='main-image'>
<div class="carousel-caption">
<h1>Gene Circuit</h1>
<h2>Characterization</h2>
</div>
</div>
<div class="item inactive">
<img src="images/aquarium-carousel.png" class='main-image'>
<div class="carousel-caption">
<h1><a href='https://www.aquarium.bio'>Protocols</a></h1>
<h2>as Code</h2>
</div>
</div>
<div class="item inactive">
<img src="images/turbido-chambers.png" class='main-image'>
<div class="carousel-caption">
<h1>Continuous</h1>
<h2>Culture</h2>
</div>
</div>
<div class="item inactive">
<img src="images/ppt-movement.jpg" class='main-image'>
<div class="carousel-caption">
<h1>Self Organizing</h1>
<h2>Systems</h2>
</div>
</div>
</div> <!-- end carousel-inner -->
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div> <!-- end carousel -->
<div class='row about-section' style="margin: auto;">
<div class='col-xs-4 about'>
<h2>About</h2>
<div class='paper-figure' style='width: 100%'>
<a href='images/eric-lecture.png'><img src='images/eric-lecture.png'></img></a>
<p>Eric Klavins, Professor</p>
</div>
<p>
The Klavins lab develops synthetic living systems, re-engineered organisms, and engineered parts for existing organisms. The emphasis is on designing gene circuits and cell-cell communication systems that enable novel multicellular behaviors in bacteria, yeast, and plants. Klavins is interested in the full stack from modeling and design to fabrication and testing of new living systems. His current projects include synthetic multicellular systems, machine-learning enabled protein engineering, and laboratory automation.
</p>
<p><a href="https://www.youtube.com/watch?v=mi12pXq_yIA">TEDx: Programming Biology</a></p>
</div>
<div class='col-xs-4 about'>
<h2>News</h2>
{% for n in site.data.news limit:9 %}
{% include news.html n=n %}
{% endfor %}
</div>
<div class='col-xs-4 about'>
<h2>Contact Info</h2>
<h4 style='text-decoration: underline'>Address</h4>
<ul class='address'>
<li><b>Klavins Lab</b></li>
<li>University of Washington </li>
<li>Campus Box 352500 </li>
<li>Seattle, WA 98195 </li>
</ul>
<h4 style='text-decoration: underline'>Links</h4>
<ul class='address'>
<li><a href='http://uwbiofab.org'>UW BIOFAB</a></li>
<li><a href='http://klavinslab.org/aquaverse/'>Aquarium</a></li>
<li><a href='http://www.ece.uw.edu'>Electrical and Computer Engineering</a></li>
<li><a href='http://cs.washington.edu'>Computer Science and Engineering</a></li>
<li><a href='http://bioe.uw.edu'>Bioengineering</a></li>
<li><a href='http://depts.washington.edu/uwcsb/'>Center for Synthetic Biology</a></li>
</ul>
<br />
<a href="https://twitter.com/hashtag/klavinslab?src=hash" class="twitter-follow-button" data-show-count="false">#klavinslab</a>
</div>
</div> <!-- end about -->
</div> <!-- end home -->
<script>
document.getElementById('nav-index').className += " highlight";
</script>