-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
91 lines (82 loc) · 3.57 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
---
layout: default-legacy
background: "white"
---
<div class="jumbotron">
<div class="container">
<div class="col-sm-5">
<img alt="SOCIS's Picture" class="img-responsive img-circle" src="/img/gravatar.jpg">
</div>
<div class="hero col-sm-7">
<h1>SOCIS</h1>
<hr>
<p class="lead">We are the Society of Computing and Information
Science, a student organization for the University of Guelph's School
of Computer Science. We run community building events from Hackathons
to LANs. We also run one of the largest College Royale events,
Roboticon. Come join us in the SOCIS office, Reynolds 0010, anytime.</p>
<small class="pull-right">Front of Reynolds, by <a href="http://www.flickr.com/photos/jswaby/299521902/" target="_blank">Jason Swaby</a>
<a href="http://creativecommons.org/licenses/by-nc-nd/2.0/deed.en" target="_blank">(by-nc-nd)</a></small>
</div>
</div>
</div>
<div id="content" class="container">
<div id="callouts" class="row">
<div class="col-sm-4 col-xs-12">
<div class="home-section">
<a href="http://www.socs.uoguelph.ca/"><i class="fa fa-code"></i></a>
<h4>Computer Science</h4>
</div>
<hr>
<p class="text-center">
We are a group of Computer Science students working to help grow our community of programmers at the University of Guelph. We coordinate with the Guelph <a href="http://www.socs.uoguelph.ca/">School of Computer Science</a> in to help plan the future of our program. We also manage a number of on campus services for students like the SOCIS office which is a space for students to relax and do independant and group work.
</p>
<hr class="visible-xs">
</div>
<div class="col-sm-4 col-xs-12">
<div class="home-section">
<a href="/events/"><i class="fa fa-calendar"></i></a>
<h4>Events Feed</h4>
</div>
<hr>
{% assign emptyEventSchedule = true %}
{% assign curDate = site.time | date: '%s' %}
{% for post in site.posts reversed %}
{% assign postDate = post.date | date: '%s' %}
{% if post.categories contains 'events' and postDate >= curDate %}
<div class="row">
<div class="col-sm-6"><a href="{{ post.url }}">{{ post.title }}</a></div>
<div class="col-sm-6">
<p style="text-align: right;">{{ post.date | date: '%B %-d,' }} {{ post.event_time }}</p>
</div>
</div>
{% assign emptyEventSchedule = false %}
{% endif %}
{% endfor %}
{% if emptyEventSchedule %}
<div class="row">
<div class="col-xs-12">
<p class="text-center">
There are not currently any upcoming events. Check out the <a target="_blank" href="{{ site.facebook_url }}">Facebook</a> and <a target="_blank" href="{{ site.twitter_url }}">Twitter</a> feeds to keep yourself up to date about all SOCIS news!
</p>
</div>
</div>
{% endif %}
<hr class="visible-xs">
</div>
<div class="col-sm-4 col-xs-12">
<div class="home-section">
<a href="{{ site.facebook_url }}"><i class="fa fa-users"></i></a>
<h4>Community Building</h4>
</div>
<hr>
<p class="text-center">
We run events throughout the year to build the community in the
Computer Science department at Guelph. In the past we have run
Hackathons, LANs and Paintballing. We are always looking for new events
to run so if you have any thing you'd like to see us do let us
know!
</p>
</div>
</div>
</div>