feat: new script to generate PDF's for the budget

This commit is contained in:
silver 2024-05-20 02:44:50 +01:00
parent 180736e69b
commit ac86f81192
Signed by: silver
GPG key ID: 54E2C71918E93B74
11 changed files with 631 additions and 41 deletions

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="./main.css" rel="stylesheet">
<title>{title}</title>
<meta content="Budget Points - {title}" name="title">
<meta content="Budget Points - {title}" 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="./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/>
Budget Points - {title}
</span>
</footer>
<script>
/* I am a lazy fucker */
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</body>
</html>