1
0
Fork 0
forked from Skynet/wiki
wiki/src/templates/wiki.html

40 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en-ie">
<head>
<title>{title}</title>
<link href="./assets/favicon/favicon-16x16.png" rel="icon" type="image/png"/>
<link href="./assets/index.css" rel="stylesheet" type="text/css"/>
<!-- for code formatting -->
<link rel="stylesheet" href="./assets/hybrid.min.css">
<script src="./assets/highlight.min.js"></script>
<script>hljs.highlightAll()</script>
</head>
<body>
<div class="wrapper">
<header class="page-header">
<a href="./" >
<img alt="Sharky, our mascot" height="81.56" src="./assets/sharky.svg" width="145"/>
</a>
<h1>
<a href="./" >
<h1>Skynet Wiki</h1>
</a>
</h1>
</header>
<main class="page-body">
<h1>{title}</h1>
<h4>{date}</h4>
<!--indentation is managed by the converter-->
{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>