1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Fixed #238 - Add query string to CSS and manifest

This commit is contained in:
Jon Ziebell 2020-02-11 19:19:06 -05:00
parent bc1e573dfd
commit ce3f922088

14
app.php
View File

@ -1,5 +1,8 @@
<?php <?php
require_once 'api/cora/setting.php';
$setting = cora\setting::get_instance();
// If you're not logged in, just take you directly to the ecobee login page. // If you're not logged in, just take you directly to the ecobee login page.
if(isset($_COOKIE['session_key']) === false) { if(isset($_COOKIE['session_key']) === false) {
header('Location: http://' . $_SERVER['HTTP_HOST'] . '/api/?resource=ecobee&method=authorize&arguments={}&api_key=ER9Dz8t05qUdui0cvfWi5GiVVyHP6OB8KPuSisP2'); header('Location: http://' . $_SERVER['HTTP_HOST'] . '/api/?resource=ecobee&method=authorize&arguments={}&api_key=ER9Dz8t05qUdui0cvfWi5GiVVyHP6OB8KPuSisP2');
@ -16,10 +19,15 @@
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#222222"> <meta name="theme-color" content="#222222">
<link rel="manifest" href="/manifest.json"> <?php
require_once 'api/cora/setting.php';
$setting = cora\setting::get_instance();
<link href="../css/dashboard.css" rel="stylesheet"> echo '<link rel="manifest" href="/manifest.json?' . $setting->get('commit') . '">';
<?php require 'js/js.php'; ?> echo '<link href="../css/dashboard.css?' . $setting->get('commit') . '" rel="stylesheet">';
require 'js/js.php';
?>
</head> </head>
<body></body> <body></body>
</html> </html>