Added: Create new refuel record
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 13s
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 13s
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
<meta name="author" content="Filip Rojek | http://filiprojek.cz">
|
||||
<meta name="email" content="webmaster(@)fofrweb.com">
|
||||
<meta name="copyright" content="(c) filiprojek.cz">
|
||||
<title>Fuel Stats | <?= $data['title'] ?></title>
|
||||
<title>Fuel Stats<?= isset($data['title']) ? " | " . $data['title'] : "" ?></title>
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<link rel="stylesheet" href="/css/vars.css">
|
||||
@ -17,7 +17,7 @@
|
||||
<header>
|
||||
<div id="hd-left">
|
||||
<a href="/"><img src="/img/logo.jpg" alt="home"></a>
|
||||
<label><?= $data['title'] ?></label>
|
||||
<label><?= isset($data['title']) ? $data['title'] : "" ?></label>
|
||||
</div>
|
||||
<div id="hd-right">
|
||||
<?php if (!isset($_SESSION['user'])): ?>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<meta name="author" content="Filip Rojek | http://filiprojek.cz">
|
||||
<meta name="email" content="webmaster(@)fofrweb.com">
|
||||
<meta name="copyright" content="(c) filiprojek.cz">
|
||||
<title>Fuel Stats | <?= $data['title'] ?></title>
|
||||
<title>Fuel Stats<?= isset($data['title']) ? " | " . $data['title'] : "" ?></title>
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<link rel="stylesheet" href="/css/vars.css">
|
||||
|
Reference in New Issue
Block a user