Added newline to each <head> to make easier debugging

This commit is contained in:
Fred Boniface 2022-09-21 21:20:14 +01:00
parent c03bd7d831
commit a7dd4526f0
1 changed files with 8 additions and 8 deletions

View File

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