Move project-list to projects/index.php

This commit is contained in:
Jacob 2023-07-31 18:04:43 +02:00
parent dd07cfa876
commit 613002356e
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
<img src="/img/home.png" width="16" height="16"> <img src="/img/home.png" width="16" height="16">
<a href="https://speedie.site">Home</a> <a href="https://speedie.site">Home</a>
<img src="/img/projects.png" width="16" height="16"> <img src="/img/projects.png" width="16" height="16">
<a href="/project-list.php">Projects</a> <a href="/projects">Projects</a>
<img src="/img/blog.png" width="16" height="16"> <img src="/img/blog.png" width="16" height="16">
<a href="/blog.php">Blog</a> <a href="/blog.php">Blog</a>
<img src="/img/rss.svg" width="16" height="16"> <img src="/img/rss.svg" width="16" height="16">

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include 'php/header.php';?> <?php include '../php/header.php';?>
<title>Projects</title> <title>Projects</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="description" content="List of all projects I maintain/used to maintain."> <meta name="description" content="List of all projects I maintain/used to maintain.">
@ -38,6 +38,6 @@
</div> </div>
</body> </body>
<footer> <footer>
<?php include 'php/footer.php';?> <?php include '../php/footer.php';?>
</footer> </footer>
</html> </html>