g1chapeau/header.php

20 lines
273 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>g1chapeau</title>
<link rel="stylesheet" type="text/css" href="layout.css" />
</head>
<body>
<?php
$elt = (isset($isHome) and $isHome) ? 'h1' : 'p';
echo '
<'. $elt .'>
<a href="'. ROOT_URL .'">
g1chapeau
</a>
</'. $elt .'>';