24 lines
740 B
PHP
24 lines
740 B
PHP
|
|
<?php use App\Infrastructure\View as V; ?>
|
||
|
|
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title><?php echo V::getHeadTitle(); ?></title>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<link rel="stylesheet" href="<?php V::assetUrl( 'css/style.css' ); ?>" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header id="header">x
|
||
|
|
<div id="logo">
|
||
|
|
<a href="index.php">
|
||
|
|
<img src="<?php V::assetUrl( 'images/Logo.jpg' ); ?>" class="logo">
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
<nav>
|
||
|
|
<ul class="nav-list">
|
||
|
|
<li><a id="google" class="nav-element" href="google.com">Google</a></li>
|
||
|
|
<li><a id="unTest" class="nav-element" href="bing.com">Bing</a></li>
|
||
|
|
</ul>
|
||
|
|
</nav>
|
||
|
|
</header>
|