This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsessions.html
executable file
·58 lines (56 loc) · 2.17 KB
/
sessions.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
<!DOCTYPE html>
<html><head>
<title>BioPUG - Sessions</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="js/kickstart.js"></script> <!-- KICKSTART -->
<link rel="stylesheet" type="text/css" href="css/kickstart.css" media="all" /> <!-- KICKSTART -->
<link rel="stylesheet" type="text/css" href="style.css" media="all" /> <!-- CUSTOM STYLES -->
</head><body>
<nav class="navbar">
<a class="hide-phone" id="logo" href="index.html"><span>Bio</span>PUG UniMelb</a>
<ul>
<li><a href="sessions.html">Sessions</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
</ul>
</nav>
<div class="content grid">
<h3>Sessions and Materials</h3>
<p>As meetings occur, this listing will be updated to provide any available materials, such as slides or code examples.</p>
<table cellspacing="0" cellpadding="0">
<thead><tr>
<th>Title</th>
<th>Date</th>
<th>Slides</th>
<th>Code Examples</th>
<th>Source Code</th>
</tr></thead>
<tbody><tr>
<td>Introductory Session and Python Basics</td>
<td>22/03/2013</td>
<td><a href="presentations/2013-03-22.html">Link</a></td>
<td><a href="code/2013-03-22.html">Link</a></td>
<td></td>
</tr>
<tr>
<td>Review, Loops, Comments and the Standard Library</td>
<td>24/04/2013</td>
<td></td>
<td><a href="code/2013-04-24.html">Link</a></td>
<td><a href="code/biopug-2013-04-24.zip">Link</a></td>
</tr>
<tr>
<td>Introduction to Coding Dojos</td>
<td>08/05/2013</td>
<td></td>
<td><a href="code/2013-05-08.html">Link</a></td>
<td></td>
</tr></tbody>
</table>
</div><!-- END GRID-->
<div class="clear"></div>
<div id="footer">This website was built with <a href="http://www.99lime.com">HTML KickStart</a> and is hosted with <a href="http://www.github.com">GitHub</a> Pages</div>
</body></html>