38 lines
No EOL
1.1 KiB
HTML
38 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="../_Templates/main.css" rel="stylesheet">
|
|
|
|
<title>{title}</title>
|
|
|
|
<meta content="{title} Handover" name="title">
|
|
<meta content="{title} Handover" name="author">
|
|
<meta content="UL Computer Society" name="description">
|
|
|
|
<!-- for mobile devices -->
|
|
<meta content="width=device-width,initial-scale=1" name="viewport">
|
|
|
|
</head>
|
|
<body class="sticky-wrapper">
|
|
<main>
|
|
<img src="../_Templates/Logo_2024.svg" alt="Computer Society Logo" width="200" height="200" id="logo"/>
|
|
<h1>University of Limerick Computer Society</h1>
|
|
<!--indentation is managed by the converter-->
|
|
{body}
|
|
</main>
|
|
|
|
<footer>
|
|
<!-- Spreads it out longways-->
|
|
<span>
|
|
© 1994-<span id="year">2024</span> | <wbr/>
|
|
UL Computer Society | <wbr/>
|
|
{title} Handover
|
|
</span>
|
|
</footer>
|
|
<script>
|
|
/* I am a lazy fucker */
|
|
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
|
</script>
|
|
</body>
|
|
</html> |