-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
149 lines (129 loc) · 5.32 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
145
146
147
148
149
---
layout: default
---
<div class="container">
<div class="hero-unit" style="text-align:center; background-color:#fff; margin-bottom:-10px">
<img alt="logo" src="img/py-cu-logo.png">
<p>Py-CU is Champaign-Urbana's Python User Group.</p>
<p>We are a bunch of people who want to get together to learn, teach, share and discuss<br/>
all things related to the Python programming language. </p>
<br/>
<!--
<p><a class="btn btn-large btn-inverse" href="form_interest.html"><span class="btn-label">Tell us what you want to talk about.</span></a>
</p>
-->
</div>
<div class="row main-features">
<div class="span6">
<div class="well">
<div style="float:left">
<h3>Announcements</h3>
</div>
<div style="float:right">
<a class="btn btn-primary" href="announcements.html"><span class="btn-label">All announcements</span></a>
</div>
<div style="clear:both">
{% assign i = 0 %}
{% for post in site.posts %}
{% if i < 3 %}
{% if post.category == 'announcements' %}
<p><a href="{{ post.url }}"> {{post.title}} </a></p>
{% assign i = i | plus: 1 %}
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="span6">
<div class="well">
<div style="float:left">
<h3>Recent and upcoming events</h3>
</div>
<div style="float:right">
<a class="btn btn-success" href="events.html"><span class="btn-label">All events</span></a>
</div>
<div style="clear:both">
{% assign i = 0 %}
{% for post in site.posts %}
{% if i < 3 %}
{% if post.category == 'events' %}
<p><a href="{{ post.url }}"> {{post.date | date:"%B %d, %Y" }}: {{ post.title}} </a>
{% assign i = i | plus: 1 %}
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row main-features">
<div class="span6">
<div class="well">
<h3>Meetings</h3>
<ul>
<li>
<strong>Monthly general meetings</strong> are for presentations and group discussions
</li>
<li>
<strong>Weekly hack sessions/open hours</strong> are for teaching/learning/discussing anything tech
<ul style="font-size: 0.85em;">
<li>Every Saturday, 1 - 3 PM</li>
<li> <a href="http://makerspaceurbana.org/">Urbana Makerspace</a>
(<a href="http://www.ucimc.org/">IMC</a> basement,
<a href="https://www.google.com/maps/place/202+S+Broadway+Ave,+Urbana,+IL+61801/@40.1114134,-88.2068363,17z/data=!3m1!4b1!4m2!3m1!1s0x880cd79ffc64b461:0x4db01f05be68e257">202 S. Broadway Ave., Urbana</a>)
<span style="">
<br>
<a
href="https://www.youtube.com/watch?v=NtVYBwzWRjY&feature=youtu.be">How
to find the Makerspace - video</a>
</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="span6">
<div class="well">
<h3>Resources</h3>
<p>
Elizabeth's directory of Python resources:
<a href="http://elizabethwickes.wordpress.com/pythonresources/">http://elizabethwickes.wordpress.com/pythonresources/</a>
</p>
<p>
Python beginner tutorials Tumblr (with content ranging beyond the class):
<a href="http://py-curious.tumblr.com/">Py-Curious</a>
</p>
<p>
<a href="http://lists.py-cu.org/pipermail/py-cu-py-cu.org/">Our LISTSERV archives</a>
</p>
</div>
</div>
<div class="span6 offset3">
<div class="well">
<h3>Contact Us</h3>
<p>Email us at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p><a href="http://lists.py-cu.org/listinfo.cgi/py-cu-py-cu.org">Sign
up for our mailing list</a>.</p>
<p>Join our groups on
<a href="http://www.facebook.com/groups/115113665332255/">Facebook</a>
and <a href="http://www.meetup.com/Python-CU/">Meetup</a>.</p>
<p>Subscribe to our <a href="{{ site.url }}/feeds/rss.xml">RSS
feed</a>.</p>
<p> Hit us up on
<a href="https://github.com/py-cu">Github</a> or
<a href="https://twitter.com/py_cu">Twitter</a>.
</p>
<div>
</div>
</div><!-- end main-features -->
</div><!-- end container -->
<div id="footer" class="pull-right">
<a href="https://twitter.com/py_cu"
class="twitter-follow-button" data-show-count="false"
data-size="large">Follow @py_cu</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>
</div>