This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
executable file
·144 lines (122 loc) · 4.47 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
---
layout: default
---
<h1 class="pt-3">We are Code for San Francisco</h1>
<p class="lead pb-3">
As part of the <a href="https://brigade.codeforamerica.org/">Code for America Brigade Network</a>, we are a welcoming
and inclusive volunteer group of developers,
designers, data geeks, and citizen activists who use creative technology to solve civic and social problems.
</p>
<div class="row mb-3 mt-5" >
<div class="col-md-6">
<ul class="list-group text-center">
<li class="list-group-item">
<h3>Civic Hack Night</h3>
Open to both technical and non-technical volunteers, Civic Hack Night is an opportunity to discover local
civic tech projects you can get involved in or start your own.
</li>
<li class="list-group-item" title="See Meetup for more info">
<strong>When: </strong>Wednesdays, 6:30pm - 9:30pm<br>
<small><i class="fa fa-info-circle"></i> See Meetup for more info</small>
</li>
<li class="list-group-item">
<strong>Where:</strong>
<!-- <a href="https://goo.gl/maps/BJu3c28TkL82"> --><del>Code for America</del> Online! (see meetup for webinar URL) <!--</a> -->
</li>
<li class="list-group-item">
<a href="https://www.meetup.com/Code-for-San-Francisco-Civic-Hack-Night" class="btn btn-danger">
RSVP on Meetup
<i class="fa fa-meetup"></i>
</a>
</li>
<li class="list-group-item">
<a href="http://c4sf.me/slack" class="btn btn-outline-info">
Chat on Slack
<i class="fa fa-slack"></i>
</a>
</li>
<li class="list-group-item">
<a href="http://eepurl.com/bfFkF9" class="btn btn-outline-info">
Join our Newsletter
<i class="fa fa-envelope"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-6">
<ul class="list-group text-center">
<li class="list-group-item">
<h3>Join us on Zoom for hack night! </h3>
<br>
</li>
<li class="list-group-item" title="See Meetup for more info">
<a href="https://ucop.zoom.us/j/91272429938">https://ucop.zoom.us/j/91272429938</a>
</li>
<li class="list-group-item">
<a href="https://c4sf.me/zoom"> <img src="{{ site.baseurl }}/img/zoom.png" width="40%" height="40%"> </a>
</li>
</ul>
</div>
</div>
<div class="card mb-3">
<div class="card-header">
Recent blog posts <a class='pull-right' href='{{ site.baseurl }}/blog/'>All posts »</a>
</div>
<div class="card-body">
{% comment %}
show posts pinned to front page via pin_to_frontpage: true
{% endcomment %}
{% assign pinned_posts = site.posts | where_exp: 'post', 'post.pin_to_frontpage == true' | sort: 'date' | reverse %}
{% for pinned_post in pinned_posts %}
{% include post_list_item.html post=pinned_post %}
{% endfor %}
{% comment %}
also show the latest unpinned post
{% endcomment %}
{% assign post = site.posts | where_exp: 'post', 'post.pin_to_frontpage != true' | sort: 'date' | reverse | first %}
{% include post_list_item.html post=post %}
</div>
</div>
<div class='row'>
<div class='col-md-12'>
<hr />
<div class='sponsors'>
<h2 id='sponsors'>Sponsors</h2>
<p>
Code for San Francisco is hosted at <a href='https://www.codeforamerica.org/'>Code for America</a> and supported
by our amazing sponsors.
</p>
<p>
Is your organization interested in becoming a Code for San Francisco sponsor? <a href="mailto:[email protected]">Drop us a line</a>!
</p>
<div class='row'>
<div class='col-md-2'>
<h4 class='sponsor-level'>Major Sponsors</h4>
</div>
<div class='col-md-3'>
<div itemscope itemtype='http://schema.org/Organization'>
<a href='http://www.microsoftbayarea.com/' itemprop='url'>
<img src='{{ site.baseurl }}/img/sponsors/microsoft.png' alt='Microsoft' itemprop='logo' class='img-fluid' />
</a>
</div>
</div>
</div>
<hr />
<div class='row'>
<div class='col-md-2'>
<h4 class='sponsor-level'>Sustaining Sponsors</h4>
</div>
<div class='col-md-3'>
</div>
</div>
<hr />
<div class='row'>
<div class='col-md-2'>
<h4 class='sponsor-level'>Official Sponsors</h4>
</div>
<div class='col-md-3'>
</div>
</div>
</div>
</div>
</div>