-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathouter_template.html
More file actions
61 lines (59 loc) · 3.4 KB
/
outer_template.html
File metadata and controls
61 lines (59 loc) · 3.4 KB
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
<!DOCTYPE html>
<HTML>
<HEAD>
<meta charset="utf-8">
<TITLE>SA2C Tech Chat</TITLE>
<link rel="stylesheet" type="text/css" href="styles/fonts.css" />
<link rel="stylesheet" type="text/css" href="styles/styles.css" />
<script type="text/javascript">
function open_close(id) {{
var display = document.getElementById(id).style.display;
document.getElementById(id).style.display = (display == "inline" ? "none" : "inline");
}}
function abstract(id) {{
var display = document.getElementById(id).style.display;
document.getElementById(id).style.display = (display == "inline" ? "none" : "inline");
document.getElementById(id + 'show').style.display = (display == "inline" ? "inline" : "none");
}}
</script>
</HEAD>
<BODY>
<div class="header">
<div class="innerheader">
<img src="images/logo.png" alt="SA2C logo" height="100px" class="title" />
<span class="title">
Swansea Academy of Advanced Computing<br />
Academi Uwch Gyfrifiadureg Abertawe
</span>
</div>
</div>
<H1>SA2C Tech Chat</H1>
<p>Second and fourth Tuesdays of each month, 11am. <!--, Computational Foundry Room 201 (with video link to Talbot 134 unless otherwise stated)--></p>
<p>Talks take place on Zoom, with the title of the chat also being a link to join the Zoom meeting.</p>
<!--<p>SA2C Tech Chat is intended to provide a venue for interesting technical discussions relevant to users of High Performance Computing. The approximate format is a 15 minute talk on an interesting technique, tool, or piece of work, followed by open discussion of the topics raised, and of any other topics of interest to those in the room.</p>-->
<p>We are always looking for new topics and speakers. If you have a topic you'd like to talk about, then please drop an email to <a href="mailto:e.j.bennett@swansea.ac.uk?subject=I%20want%20to%20give%20an%20SA2C%20Tech%20Chat%21">Ed Bennett</a>. If you don't know what to talk about (or want to propose a topic for someone else to talk about), <a href="proposed.html">this list</a> will provide some inspiration.</p>
<!--<p>Tech Chats are currently on hiatus while arrangements are made following the move to the Computational Foundry. For updates on the next Tech Chat, as well as other SA2C news, please subscribe to the <a href="https://mailman.swan.ac.uk/mailman/listinfo/sa2c-users">SA2C users mailing list</a>.-->
<p>Where the speaker consents, talks are recorded and available on the <a href="https://www.youtube.com/channel/UC-IZYAmsqt5H81kapNL388A">SA2C YouTube Channel</a>; individual talks are linked below.</a></p>
<!--<H2><span class="scriptlink" onClick="open_close('upcoming');">Upcoming</span></H2>-->
<div id="upcoming" style="display:inline">
<TABLE>
<col class="date" />
<col class="name" />
<col class="title" />
{future}
</TABLE>
</div>
<H2><span class="scriptlink" onClick="open_close('past');">Past events</span></H2>
<div id="past" style="display:inline">
{past}
</div>
<!--footer-->
<div class="footer">
<ul class="footeritems">
<li class="footeritem"><a href="https://supercomputing.wales/"><img src="images/scw.svg" height="70px" /></a></li>
<li class="footeritem"><a href="https://www.swansea.ac.uk/"><img src="images/swansea.svg" height="70px" /></a></li>
<li class="footeritem"><img src="images/wefo.svg" height="60px" /></li>
</ul>
</div>
</BODY>
</HTML>