-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (58 loc) · 2.29 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
---
---
<div class = "banner">
</div>
<div class="mission-box">
<h3>Mission</h3>
The Quadracci Sustainable Engineering Lab at the School of Engineering (SEAS)
and The Earth Institute, Columbia University uses engineering to help address
development issues. We engineer software solutions to help make development
planning smarter and to improve the delivery of critical services like health
and energy in the developing world.
</div>
<div class="row">
<div class = "span12" style=>
<div class = "row">
<div class = "span6">
{% assign images = site.categories.blog[0].content | split:"<img " %}
{% for image in images %}
{% if image contains 'src' %}
{% assign attributes = image | split:"/>" | first %}
<a href="{{ site.categories.blog[0].url }}">
<img {{attributes}} />
</a>
{% break %}
{% endif %}
{% endfor %}
{% assign post = site.categories.blog[0] %}
</div>
<div class="span6">
<h3>News:</h3> {% include special_recent_post_summary.html post=post counter=0 %}
</div>
</div>
</div>
</div>
<div class = "row">
<div class = "span12">
<div class = "row">
<div class = "span6 recent-posts">
<h3 class="widget-title srp-widget-title">Recent Blog Posts</h3>
<div class="srp-widget-container">
{% assign counter = 0 %}
{% for post in site.categories.blog limit: 6 %}
{% assign counter = counter | plus: 1 %}
{% if counter != 1 %}
{% include special_recent_post_summary.html post=post counter=counter %}
{% endif %}
{% endfor %}
</div>
</div>
<div class="span6 recent-tweets">
<h3 class="widget-title srp-widget-title">Recent Tweets</h3>
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/qsel_columbia" data-widget-id="710173974974619648" height="790">Tweets by @qsel_columbia</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
</div>
</div>