site/header.php

22 lines
702 B
PHP
Raw Normal View History

2020-01-01 09:42:04 +00:00
<html lang="en">
2019-09-14 16:58:11 +00:00
<head>
2019-09-14 18:29:05 +00:00
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-09-14 16:58:11 +00:00
<title><?=isset($title) ? $title : "Welcome to ~tilde.club~"?></title>
2024-08-17 17:52:25 +00:00
<link rel="preload" href="/style.css" as="style">
<link rel="preload" href="/images/rss.png" as="image">
2019-09-21 18:52:11 +00:00
<link rel="stylesheet" href="/style.css">
2019-09-14 16:58:11 +00:00
</head>
<body>
2020-05-06 04:50:17 +00:00
<?php include "nav.html"; ?>
<div class="content">
2024-08-17 16:21:20 +00:00
<!-- RSS Icon -->
2024-08-17 16:27:18 +00:00
<div class="rss-icon">
2024-08-17 16:21:20 +00:00
<a href="/changes.rss" title="RSS Feed">
2024-08-17 16:27:18 +00:00
<img src="/images/rss.png" alt="RSS Feed">
2024-08-17 16:21:20 +00:00
</a>
</div>
2024-08-17 16:27:18 +00:00
</div>