website/public/internal/header.php
2021-04-13 10:07:16 +02:00

24 lines
600 B
PHP

<?php
function getHeader($pagetitle)
{
include "config.php";
echo(<<<EOF
<!DOCTYPE html >
<html lang = "de" >
<html >
<head >
<meta charset = "UTF-8" >
<meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
<title > $pagetitle - Jonas Leder </title >
<link href = "/css/style.css" rel = "stylesheet" >
</head >
<body >
<jl-header data-title="$pagetitle"></jl-header>
<div id = "content" >
<!--Matomo Image Tracker -->
<img src = "" style = "border:0" alt = "" />
<!--End Matomo -->
EOF);
}