-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (78 loc) · 2.03 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
---
title: Home
highlight: true
id: home
---
<div class="acm-boxbg acm-mb20">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h1>Next Meeting:</h1>
<h1>$nm_name$</h1>
<p>$nm_desc$</p>
</div>
<div class="col-sm-offset-1 col-sm-5">
<table class="table">
<tr>
<td>Who is speaking?</td>
<td class="acm-b">$nm_speaker$</td>
</tr>
<tr>
<td>When?</td>
<td class="acm-b">$nm_dt$</td>
</tr>
<tr>
<td>What room?</td>
<td class="acm-b">$nm_room$</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-8">
<h1>Welcome to the YSU ACM!</h1>
<p>
The Youngstown State University student chapter of the Association for
Computing Machinery (YSU ACM) hosts weekly meetings with presentations by
students, faculty, staff, alumni, and sometimes special
guests. Presentations cover all aspects of computer science and related
fields. Examples include presentations on ethical hacking,
command-line/shell tricks, functional programming, bitcoin, and
spreadsheet hacks to impress your supervisor.
</p>
</div>
<div class="col-sm-4">
<h2>Problem Of The Week</h2>
<a href="https://open.kattis.com/problems/functionalfun">
Functional Fun
</a>
</div>
</div>
<hr />
<div class="row">
<div class="col-sm-12">
<h1>Recent Presentations</h1>
<table style="width: 100%;">
<thead>
<tr>
<th>Speaker</th>
<th>Title</th>
<th>Date and Time</th>
</tr>
</thead>
<tbody>
$for(presentations)$
<tr>
<td>$nm_speaker$</td>
<td><a href="#">$nm_name$</a></td>
<td>$nm_dt$</td>
</tr>
$endfor$
</tbody>
</table>
</div>
</div>
</div>