Update header.php

This commit is contained in:
deepend-tildeclub 2024-08-17 11:55:46 -06:00 committed by GitHub
parent 90c4f3d500
commit 23039ce7e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 12 deletions

View File

@ -1,21 +1,23 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge"> <meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title><?=isset($title) ? $title : "Welcome to ~tilde.club~"?></title> <title><?=isset($title) ? $title : "Welcome to ~tilde.club~"?></title>
<link rel="preload" href="/style.css" as="style">
<link rel="preload" href="/images/rss.png" as="image"> <!-- Preload CSS and image resources -->
<link rel="stylesheet" href="/style.css"> <link rel="preload" href="/style.css" as="style">
<link rel="preload" href="/images/rss.png" as="image">
</head>
<!-- Load the CSS file -->
<link rel="stylesheet" href="/style.css">
</head>
<body> <body>
<?php include "nav.html"; ?> <?php include "nav.html"; ?>
<div class="content"> <div class="content">
<!-- RSS Icon --> <!-- RSS Icon -->
<div class="rss-icon"> <div class="rss-icon">
<a href="/changes.rss" title="RSS Feed"> <a href="/changes.rss" title="RSS Feed">
<img src="/images/rss.png" alt="RSS Feed"> <img src="/images/rss.png" alt="RSS Feed">
</a> </a>
</div> </div>
</div>