index.html > index.php

This commit is contained in:
Fred Boniface 2022-09-20 19:34:44 +01:00
parent c94ebb62b9
commit ec6551e985
2 changed files with 10 additions and 20 deletions

View File

@ -1,18 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include './page-blocks/headers.php';?>
<title>Athena</title> <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/tiploc-finder.js"></script>
<script src="/js/nav.js"></script> <script src="/js/nav.js"></script>
@ -77,9 +68,7 @@
</div> </div>
<!-- Footer --> <!-- Footer -->
<footer> <?php include "./page-blocks/footer.php" ?>
<p>Created by Fred Boniface - v0.4.0-devel</p>
</footer>
</body> </body>

View File

@ -1,9 +1,10 @@
<?php <?php
echo <meta charset="UTF-8"/>; echo '<meta charset="UTF-8"/>';
echo <meta name="description" content="Athena - Live train departures for traincrew."/>; 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="viewport" content="width=device-width, initial-scale=1.0">';
echo <meta name="application-name" content="Athena">; echo '<meta name="application-name" content="Athena">';
echo <meta name="author" content="Frederick Boniface">; echo '<meta name="author" content="Frederick Boniface">';
echo <link rel="stylesheet" type="text/css" href="/styles/style.css"/>; 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="icon" type="image/png" href="/assets/icons/favicon.ico"/>';
echo '<link rel="manifest" type="application/json" href="/manifest.json"/>';