-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (37 loc) · 1.98 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
---
layout: index
published: true
---
<div class="row">
<div class="span12" style="text-align:center;">
<img src="assets/img/smart-chicago-apps-logo.gif" alt="Smart Chicago Apps"/>
</div>
</div>
<div class="row app-row" style="margin-top:40px;">
{% for post in site.posts reversed %}
<div class="span4">
{% if post.thumbnail %}
<div class="site-thumbnail">
<a href="{{ post.website }}">
<img src="assets/img/thumbnails/{{ post.thumbnail }}" alt="Site screenshot" class="img-polaroid"/>
</a>
<span class="label badge-{{ post.support }}" style="position:absolute; right: 10px; top: 10px;">{{ post.support }}</span>
</div>
{% endif %}
<h3>{{ post.title }}</h3>
<p>{{ post.content }}</p>
{% if post.website %}<p><i class="icon-home"></i> <a href="{{ post.website }}">{{ post.website}}</a></p>{% endif %}
{% if post.github %}<p><i class="icon-tasks"></i> <a href="{{ post.github }}">{{ post.github}}</a></p>{% endif %}
</div>
{% assign loop_index_modulo = forloop.index | modulo:3 %}
{% if loop_index_modulo == 0 %}</div><div class="row app-row">{% endif %}
{% endfor %}
</div>
<div class="row">
<div class="span12">
<h2>About</h2>
<p>The <a href="http://www.smartchicagocollaborative.org">Smart Chicago Collaborative</a> offers civic developers in Chicago free access to Amazon Web Services and Heroku for hosting their applications, among <a href="http://www.smartchicagocollaborative.org/projects/developer-resources/">many other developer-focused resources</a>.</p>
<p>If you are a developer and are interested in free hosting for your application, please <a href="http://www.smartchicagocollaborative.org/projects/hosted-web-space/">complete the sign up form</a>.</p>
<p>You can see a number of projects that Smart Chicago maintains and supports at the <a href="https://github.com/smartchicago">Smart Chicago Github page</a>.</p>
</div>
</div>