Rename stuff

This commit is contained in:
Jacob 2023-08-07 18:56:26 +02:00
parent 0217df65c7
commit ec94dc5431
4 changed files with 27 additions and 7 deletions

View file

@ -47,12 +47,12 @@
</li> </li>
<li> <li>
<img src="img/rocks.png" width="16" height="16"> <img src="img/rocks.png" width="16" height="16">
<a href="rocks.php">Rocks</a> <a href="/rocks">Rocks</a>
<p>Things that rock.</p> <p>Things that rock.</p>
</li> </li>
<li> <li>
<img src="img/sucks.png" width="16" height="16"> <img src="img/sucks.png" width="16" height="16">
<a href="sucks.php">Sucks</a> <a href="/sucks">Sucks</a>
<p>Things that suck.</p> <p>Things that suck.</p>
</li> </li>
<li> <li>
@ -62,7 +62,7 @@
</li> </li>
<li> <li>
<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>
<p>Projects I've worked on.</p> <p>Projects I've worked on.</p>
</li> </li>
<li> <li>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include 'php/header.php';?> <?php include '../php/header.php';?>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="description" content="List of software I think is awesome."> <meta name="description" content="List of software I think is awesome.">
<meta name="author" content="speedie"> <meta name="author" content="speedie">
@ -32,6 +32,6 @@
</div> </div>
</body> </body>
<footer> <footer>
<?php include 'php/footer.php';?> <?php include '../php/footer.php';?>
</footer> </footer>
</html> </html>

20
sucks/gnu-linux.php Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<?php include 'php/header.php';?>
<meta charset="UTF-8">
<meta name="description" content="Reasons why GNU/Linux sucks">
<meta name="author" content="speedie">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>GNU/Linux, and why it sucks</title>
</head>
<body>
<div class="content">
<h2>GNU/Linux, and why it sucks</h2>
<p>To write.</p>
</div>
</body>
<footer>
<?php include 'php/footer.php';?>
</footer>
</html>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include 'php/header.php';?> <?php include '../php/header.php';?>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="description" content="List of things I hate."> <meta name="description" content="List of things I hate.">
<meta name="author" content="speedie"> <meta name="author" content="speedie">
@ -56,6 +56,6 @@
</div> </div>
</body> </body>
<footer> <footer>
<?php include 'php/footer.php';?> <?php include '../php/footer.php';?>
</footer> </footer>
</html> </html>