presentations_compsoc/src/templates/general.html

32 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en-ie">
<head>
<title>{title}</title>
2023-10-08 12:38:17 +00:00
<link href="../images/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
<link href="../../images/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
<link href="../templates/index.css" rel="stylesheet" type="text/css"/>
2023-10-08 12:38:17 +00:00
<link href="../../templates/index.css" rel="stylesheet" type="text/css"/>
<!-- for code formatting -->
<link rel="stylesheet" href="../templates/hybrid.min.css">
2023-10-08 12:38:17 +00:00
<link rel="stylesheet" href="../../templates/hybrid.min.css">
<script src="../templates/highlight.min.js"></script>
2023-10-08 12:38:17 +00:00
<script src="../../templates/highlight.min.js"></script>
<script>hljs.highlightAll()</script>
</head>
<body>
<div class="wrapper">
<header class="page-header"></header>
<main class="page-body">
{body}
</main>
<footer class="page-footer">
UL Computer Society 2023-<span id="year">2023</span>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</footer>
</div>
</body>
</html>