forked from jpvelez/transit-future
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
103 lines (79 loc) · 3.41 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
---
layout: default
title: Transit Future
---
<div id="loading">
<img src="img/transit_future_logo.jpg" />
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<!-- <a class="brand" href="#"><img class="cfalogo" src="img/Chicago-muni-flag.png"> -->
<!-- Everything you want hidden at 940px or less, place within here -->
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse collapse">
<!-- .nav, .navbar-search, .navbar-form, etc -->
<ul class="nav">
<li class="navtransitfuture"><a href="#">Transit Future</a></li>
<li class="navchicago"><a href="#">Chicago</a></li>
<li class="navsouthsuburbs"><a href="#">South Suburbs</a></li>
<li class="navwestsuburbs"><a href="#">West Suburbs</a></li>
<li class="navnorthsuburbs"><a href="#">North Suburbs</a></li>
<li class="navfunding"><a href="#">Funding</a></li>
<li class="navsupporters"><a href="#">Supporters</a></li>
</ul> <!-- nav -->
</div> <!-- collapse -->
</div> <!-- container -->
</div> <!-- navbar-inner -->
</div> <!-- navbar -->
{% for p in site.posts %}
{% if p.url != "/index.html" %}
<div class="pagebg {{ p.pagetype }} {{ p.image }}" style="background-color:#{{ p.bgcolor }};" >
</div>
{% endif %}
{% endfor %}
<div id="page">
<div class="sidebar">
{% for p in site.posts %}
<div class="sidebartitle" >
<h1></h1>
{% if p.title != "stats" %}
<h2>{{ p.title }}</h2>
{% endif %}
</div>
{% endfor %}
</div>
{% for p in site.posts %}
{% if p.url != "/index.html" %}
<a name="{{ p.section }}"></a>
<div class="page {{ p.pagetype }}" style="background-color:#{{ p.bgslide }};padding-top:{{ p.extrapadding }}" data-section="nav{{ p.section }}">
{{ p.content | markdownify }}
<div class="clear"></div>
</div>
{% endif %}
{% endfor %}
</div>
<!-- Twitter sharing stuff -->
<div class="sharebutton">
<!-- The GitHub link
<a href="https://github.com/jpvelez/transit-future"><img src="img/dev.png" alt="Download source" width="44" height="44" /></a>
<br />
-->
<!-- Facebook part -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=38481464681";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-share-button" data-href="http://vision.transitfuture.org?fb" data-type="box_count" style="float: left;"></div>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://vision.transitfuture.org" data-count="vertical" data-text="Check out this awesome map of a new #transitfuture for Chicagoland: " style="min-height:62px;float:left;">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>