-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathouter_template.html
More file actions
63 lines (62 loc) · 2.79 KB
/
outer_template.html
File metadata and controls
63 lines (62 loc) · 2.79 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
62
63
<!DOCTYPE html>
<HTML>
<HEAD>
<meta charset="utf-8">
<TITLE>SA2C/Supercomputing Wales Code Clinic</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/Supercomputing Wales Code Clinic</H1>
<ul>
<li>Are you having a HPC-related problem?</li>
<li>Need to get your code running on a cluster?</li>
<li>Want help writing better job scripts?</li>
<li>Want suggestions on how to improve your code quality or performance?</li>
</ul>
<!--<p>The SA2C/Supercomputing Wales RSE team is available to help! Drop-in sessions are available every Wednesday, 3–5pm. Locations rotate weekly; see below.</p>
<p>Click a room name for directions and a map.</p>
<p>If the time slot doesn't work for you, please <a href="mailto:sa2c-support@swansea.ac.uk">email us</a> and we can meet at a time convenient to you</p>-->
<p>While in-person Code Clinics are on hold due to restrictions around attending campus, the SA2C RSE team is still available to help! Join
us on <a href="https://recon.swansea.ac.uk/">ReCoN</a>, or <a href="mailto:sa2c-support@swansea.ac.uk">drop us an email</a> and we can
set up a time for a Zoom meeting to discuss your needs.</a>
<!--{next}-->
<!--<H2><span class="scriptlink" onClick="open_close('upcoming');">Upcoming</span></H2>
<div id="upcoming" style="display:inline">
<TABLE>
<col class="date" />
<col class="time" />
<col class="location" />
{future}
</TABLE>
</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>