Alfonso Saavedra "Son Link
00539037dd
* Top menu and side menu are now fixed. * The side menu now occupies the available height and has its own scrolling (no need to scroll down the page anymore) * Other small corrections
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
$request = service('request');
|
|
$uri = $request->getUri();
|
|
$current_path = $uri->getPath();
|
|
?>
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title><?=$title?></title>
|
|
<link rel="stylesheet" type="text/css" href="<?= base_url() ?>/css/style.css" />
|
|
<link rel="stylesheet" type="text/css" href="<?= base_url() ?>/font/weather-icons.css" />
|
|
<?php if(!empty($custom_css)): ?>
|
|
<?php foreach ($custom_css as $css): ?>
|
|
<link rel="stylesheet" type="text/css" href="<?=base_url()."/css/$css"?>"></script>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="mainMenu">
|
|
<a href="<?= base_url() ?>">Home</a>
|
|
<a href="<?= base_url('users') ?>">Racers</a>
|
|
<!--<li><a href="./live.php">Live stats</a></li>-->
|
|
<a href="<?= base_url('register') ?>">Register</a>
|
|
<a href="<?= base_url('login') ?>">Login</a>
|
|
<a href="https://speed-dreams.net" target="_black">Blog</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div id="header_logo" <?= ($current_path == '/') ? 'class="main_page"' : '' ?>>
|
|
<img class="logo" src="<?= base_url() ?>/img/sd-flag.png" alt="Speed Dreams logo"/>
|
|
</div>
|
|
|
|
<div id="main">
|