g1chapeau/header.php

20 lines
273 B
PHP
Raw Normal View History

2020-12-10 15:53:17 +01:00
<!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 .'>';