-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·43 lines (38 loc) · 1.09 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
---
layout: default
---
{% capture index %}{% include index.md %}{% endcapture %}
{{ index | markdownify }}
<div id="home">
<h2>Code for America Team Salt Lake County Links</h2>
<ul class="posts">
<li>
<a href="http://slco-2016.github.io/q1_report/">Interactive Report Explorer</a>
</li>
<li>
<a href="http://c4a-slc.tumblr.com/">Team Salt Lake County Tumblr Blog</a>
</li>
<li>
<a href="https://www.codeforamerica.org/governments/saltlakecounty/">Code for America Website</a>
</li>
</ul>
</div>
{% if site.repos %}
<section id="repositories">
<h2>Phase 1 Project Repositories</h2>
<ul class="repo-list group">
<li class="list-icon">
<img src="assets/imgs/octocat.png" width="25px" alt="">
</li>
{% for repo in site.repos %}
<li>
<a href="{{ repo.url }}">
<h4>{{ repo.name }}</h4>
<p>{{ repo.description }}</p>
</a>
</li>
{% endfor %}
</ul>
<p>View them all on the <a href="https://github.com/slco-2016/">Team Salt Lake County 2016 Github Organization</a>.</p>
</section>
{% endif %}