index.html > index.php
This commit is contained in:
parent
c94ebb62b9
commit
ec6551e985
@ -1,18 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<?php include './page-blocks/headers.php';?>
|
||||
<title>Athena</title>
|
||||
|
||||
<meta charset="UTF-8"/>
|
||||
<meta name="description" content="Athena - Quick links to live train departures for traincrew."/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="application-name" content="Athena">
|
||||
<meta name="author" content="Frederick Boniface">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/styles/style.css"/>
|
||||
<link rel="icon" type="image/png" href="/assets/icons/favicon.ico"/>
|
||||
<link rel="manifest" type="application/json" href="/manifest.json"/>
|
||||
|
||||
<script src="/js/tiploc-finder.js"></script>
|
||||
<script src="/js/nav.js"></script>
|
||||
|
||||
@ -77,9 +68,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer>
|
||||
<p>Created by Fred Boniface - v0.4.0-devel</p>
|
||||
</footer>
|
||||
<?php include "./page-blocks/footer.php" ?>
|
||||
|
||||
</body>
|
||||
|
@ -1,9 +1,10 @@
|
||||
<?php
|
||||
|
||||
echo <meta charset="UTF-8"/>;
|
||||
echo <meta name="description" content="Athena - Live train departures for traincrew."/>;
|
||||
echo <meta name="viewport" content="width=device-width, initial-scale=1.0">;
|
||||
echo <meta name="application-name" content="Athena">;
|
||||
echo <meta name="author" content="Frederick Boniface">;
|
||||
echo <link rel="stylesheet" type="text/css" href="/styles/style.css"/>;
|
||||
echo <link rel="icon" type="image/png" href="/assets/icons/favicon.ico"/>;
|
||||
echo '<meta charset="UTF-8"/>';
|
||||
echo '<meta name="description" content="Athena - Live train departures for traincrew."/>;'
|
||||
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
|
||||
echo '<meta name="application-name" content="Athena">';
|
||||
echo '<meta name="author" content="Frederick Boniface">';
|
||||
echo '<link rel="stylesheet" type="text/css" href="/styles/style.css"/>';
|
||||
echo '<link rel="icon" type="image/png" href="/assets/icons/favicon.ico"/>';
|
||||
echo '<link rel="manifest" type="application/json" href="/manifest.json"/>';
|
||||
|
Reference in New Issue
Block a user