-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (178 loc) · 5.79 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
---
layout: default
---
<!-- No idea what this is -->
<div class="emailTip"></div>
<!-- Top of Page -->
<div class="background">
<div class="siggdIconAndText">
<!-- Logo -->
<a href="/"><img src="/img/logos/SIGGD_logo_final.png" style="width: 50%;"></a>
<!-- Name -->
<h1>Purdue SIGGD</h1>
<!-- Line -->
<hr>
<!-- Short Description -->
<h3>Purdue ACM's Special Interest Group on Game Development</h3>
</div>
</div>
<!-- About Us -->
<div class="content_block">
<h3>About Us</h3>
<div class="anchor" id="about"></div>
<div style="padding: 2%;">
<p>
Founded in Fall 2011, Purdue ACM's Special Interest Group on Game Development is a multi-disciplinary group
of
Purdue University students that creates a new <a class="aInParagraph" style="white-space: nowrap;"
href="/#games">game</a> each school year. As part of the Association for Computing Machinery Purdue
chapter,
we are the first SIGGD of ACM National. Our goal is to develop creative and interesting games. In addition,
we host a <a class="aInParagraph" style="white-space: nowrap;" href="/#game_jams">game jam</a> (game
development hackathon) each semester were groups come together either
online or in-person to create a video game prototype in 48 hours.
</p>
<br>
<p>
We primarily communicate through our <a class="aInParagraph" style="white-space: nowrap;"
href="https://discord.gg/Mb2JAhv">Discord Server</a>, so if you are interested in joining the club be
sure
to join!
</p>
</div>
</div>
<!-- Games -->
<div class="content_block">
<h3>Games</h3>
<div class="anchor" id="games"></div>
<h5>(<a href="/games/">See list of all games</a>)</h5>
{% assign games = {{site.games | size }} %}
{% assign offsetNum = {{games | minus: 2 }} %}
{% for game in site.games reversed offset:offsetNum %}
<div class="game">
<div style="width: 20%; float:left;">
<img alt="" src="{{ game.imageLink}}" style="width: 100%;">
</div>
<div style="width: 70%; float:left; padding: 2%; padding-top: 1%;">
<a href="{{ game.url }}">
<h2>{{ game.title }} ({{ game.dateRange }})</h2>
</a>
{{ game.tagline }}
<br>
<h5>
{% assign contentSize = game.content | size %}
{% if game.content contains '
<!--more-->' %}
{{ game.content | split:'
<!--more-->' | first }}
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 256 %}
{{ game.content | truncate: 256 }}
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% else %}
{{ game.content }}
{% endif %}
</h5>
</div>
</div>
{% endfor %}
</div>
<!-- Current officers -->
<div class="content_block">
<h3>Officers</h3>
<div class="anchor" id="officers"></div>
<h5>(<a href="https://docs.google.com/document/d/1ZnjgwkP6vf9UPIZOg6qeTRJo322k_7e-cIcqgDlXgVk/edit?usp=sharing">Learn
about officer responsibilities here</a>)</h5>
{% assign counter = 0 %}
{% for person in site.persons %}
{% if person.endYear == "Present" or person.endYear == "present" %}
<div class="person">
{% assign remainder = counter | modulo: 2 %}
{% if remainder == 0 %}
<div style="width: 15%; float:left;">
<img alt="" src="{{ person.imageLink}}" style="width: 100%;">
</div>
<div style="width: 70%; float:left; padding: 2%; padding-top: 1%;">
<a href="{{ person.url }}">
<h2>{{person.title}} - {{person.role}}</h2>
</a>
<h5>{{person.startYear}} - {{person.endYear}}</h5>
{% assign contentSize = person.content | size %}
{% if person.content contains '
<!--more-->' %}
{{ person.content | split:'
<!--more-->' | first }}
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ person.content | truncate: 512 }}
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% else %}
{{ person.content }}
{% endif %}
</div>
{% else %}
<div style="width: 70%; float:right; padding: 2%; padding-top: 1%;">
<a href="{{ person.url }}">
<h2>{{person.title}} - {{person.role}}</h2>
</a>
<h5>{{person.startYear}} - {{person.endYear}}</h5>
{% assign contentSize = person.content | size %}
{% if person.content contains '
<!--more-->' %}
{{ person.content | split:'
<!--more-->' | first }}
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ person.content | truncate: 512 }}
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% else %}
{{ person.content }}
{% endif %}
</div>
<div style="width: 15%; float:right;">
<img alt="" src="{{ person.imageLink}}" style="width: 100%;">
</div>
{% endif %}
</div>
{% endif %}
{% assign counter = counter | plus:1 %}
{% endfor %}
</div>
<!-- Game Jams -->
<div class="content_block">
<h3>Game Jams</h3>
<div class="anchor" id="game_jams"></div>
<h5>(<a href="/game-jams/">See list of all game jams</a>)</h5>
{% assign jams = {{site.game-jams | size }} %}
{% assign offsetNum = {{jams | minus: 2 }} %}
{% for jam in site.game-jams reversed offset:offsetNum %}
<div class="jam">
<div style="width: 20%; float:left;">
<img alt="" src="{{ jam.imageLink}}" style="width: 100%;">
</div>
<div style="width: 70%; float:left; padding: 2%; padding-top: 1%;">
{% if jam.jamLink != null %}
<a href="{{ jam.jamLink }}">
<h2>{{ jam.title }}</h2>
</a>
{% else %}
<a href="{{ jam.url }}">
<h2>{{ jam.title }}</h2>
</a>
{% endif %}
{% assign contentSize = jam.content | size %}
{% if jam.content contains '
<!--more-->' %}
{{ jam.content | split:'
<!--more-->' | first }}
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ jam.content | truncate: 512 }}
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% else %}
{{ jam.content }}
{% endif %}
</div>
</div>
{% endfor %}
</div>