General Tidying

This commit is contained in:
Fred Boniface 2022-10-07 22:45:01 +01:00
parent d4bba30b2b
commit 6cdac143c3
4 changed files with 28 additions and 3 deletions

View File

@ -35,6 +35,10 @@ body {
margin: auto;
}
.page-main-content h2 {
padding-top: 45px;
}
footer {
background-color: rgb(61, 61, 61);
color: #eeeeee;

View File

@ -18,7 +18,7 @@
</p>
<p>
My public GPG keys can be found below. You can use my public key to
My public GPG keys will be published below. You can use my public key to
confirm that a signed email came from me, to verify signed files, and
to verify commits and downloads from my <a href="https://git.fjla.uk">
gitea server</a>.

View File

@ -2,11 +2,11 @@
<a href="/">Home</a>
<a href="/gpg.php">GPG</a>
<div class="dropdown">
<button class="dropbtn">Dropdown
<button class="dropbtn">Downloads
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="/downloads/vcard.vcf">vCard</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>

21
projects.php Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<?php include "./page-blocks/head.php"; ?>
<title>Projects</title>
</head>
<body>
<?php include "./page-blocks/menu.php"; ?>
<h1 class="page-title">Projects</h1>
<div class="page-main-content">
<p>Sorry, there's nothing here yet</p>
</div>
<?php include "./page-blocks/footer.php"; ?>
</body>
</html>