17 lines
555 B
PHP
17 lines
555 B
PHP
<!DOCTYPE html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://lukerufkahr.com/assets/style.css">
|
|
</head>
|
|
<body>
|
|
<?php include '.././snippet/header.php'?>
|
|
<main>
|
|
<h1>List of class notes.</h1>
|
|
<ul>
|
|
<li><a href="https://lukerufkahr.com/notes/physics.html">Physics</a></li>
|
|
<li><a href="https://lukerufkahr.com/notes/circuits.html">Circuits</a></li>
|
|
<li><a href="https://lukerufkahr.com/notes/cpp.html">C++</a></li>
|
|
</ul>
|
|
</main>
|
|
<?php include '.././snippet/footer.php'?>
|
|
</body>
|