insert-coin/resources/templates/header.php

25 lines
699 B
PHP
Raw Normal View History

2017-12-22 23:07:38 -06:00
<!DOCTYPE html>
<html lang="en">
2017-12-21 01:13:31 -06:00
<head>
<!-- THIS ENTIRE FILE IS UNDER THE AGPLv3+
https://www.gnu.org/licenses/agpl-3.0.html -->
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/connection" type="text/css"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
2017-12-21 01:13:31 -06:00
<link rel="shortcut icon" href="res/img/coin.ico">
2018-04-06 22:36:00 -05:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2017-12-21 01:13:31 -06:00
<title><?php echo($site_name . ": " . $page_title); ?></title>
2018-04-06 22:36:00 -05:00
</head>
2017-12-21 01:13:31 -06:00
2018-04-06 22:36:00 -05:00
<body>
<div class="menu top-menu">
<h2><a href="."><?php echo($site_name); ?></a></h2>
2018-04-06 22:36:00 -05:00
<ul>
2018-04-06 23:05:59 -05:00
<li><a href="index.php">file-beamer</a></li>
<li><a href="url.php">url-shortener</a></li>
2018-04-06 22:36:00 -05:00
</ul>
2017-12-21 01:13:31 -06:00
</div>