41 lines
1.7 KiB
PHP
41 lines
1.7 KiB
PHP
<?php
|
|
use \sven\sys\core as CORE;
|
|
CORE::addTemplate('head', <<<EOF
|
|
<!DOCTYPE html>
|
|
<html lang="en-DE">
|
|
<head>
|
|
<meta http-equiv="Cache-Control" content="cache, no-store, must-revalidate">
|
|
<meta http-equiv="Expires" content="0">
|
|
<title> %%head_TITLE%% - SVEN </title>
|
|
|
|
<!-- Stylesheets -->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="shortcut icon" href="http://www.null.pointer/404_error_resource" />
|
|
<base href="/sven/">
|
|
|
|
<!-- Bootstrap core css -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
<!--<link href="https://fonts.googleapis.com/css?family=Raleway:400,700|Source+Sans+Pro:400,700" rel="stylesheet" type="text/css">-->
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet" type="text/css">
|
|
|
|
<!-- Chartist.JS -->
|
|
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
|
|
|
|
<!-- Custom stylesheet -->
|
|
<link href="public/css/styles.css" rel="stylesheet" type="text/css">
|
|
<!-- /Stylesheets -->
|
|
|
|
<!-- HTML4 backport -->
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<!--[if lt IE 9]>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js.js"></script>
|
|
<![endif]-->
|
|
<!-- /HTML4 backport -->
|
|
</head>
|
|
EOF
|
|
);
|
|
?>
|