You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="styles.css"/>
|
|
|
|
<title>AoC 2024 Solutions</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="response">Response</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
for ($i = 1; $i <= 25; $i++){
|
|
|
|
echo
|
|
|
|
"<div class='day' id='day-$i'>
|
|
|
|
<h3>Day $i</h3>
|
|
|
|
<button data-url='/run.php?day=$i&part=1'>Part 1</button>
|
|
|
|
<button data-url='/run.php?day=$i&part=2'>Part 2</button>
|
|
|
|
</div>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="application/javascript" src="main.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|