feat: added script to convert events to PDF
This commit is contained in:
parent
86067ce426
commit
e4337e4b48
8 changed files with 556 additions and 2 deletions
38
Events/_Templates/event.html
Normal file
38
Events/_Templates/event.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link href="./main.css" rel="stylesheet">
|
||||
|
||||
<title>Event - {title}</title>
|
||||
|
||||
<meta content="{title} Committee Minutes" name="title">
|
||||
<meta content="UL Computer Society" name="author">
|
||||
<meta content="UL Computer Society Committee Minutes" 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/>
|
||||
Event - {title}
|
||||
</span>
|
||||
</footer>
|
||||
<script>
|
||||
/* I am a lazy fucker */
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue