site/header.php

19 lines
577 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>
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 -->
<div class="rss-icon-container">
<a href="/changes.rss" title="RSS Feed">
<img src="images/rss.png" alt="RSS Feed">
</a>
</div>