23 lines
No EOL
548 B
PHP
23 lines
No EOL
548 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" >
|
|
|
|
<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);
|
|
} |