Base Url Tweek <html>

This commit is contained in:
GamerClassN7 2020-11-18 21:40:52 +01:00
parent 0e3f571a0d
commit e9b8e0a453
4 changed files with 9 additions and 3 deletions

View File

@ -2,8 +2,9 @@
<html lang="en">
<head>
<?php
$partial = new Partial('head');
$partial = new Partial('head');
$partial->prepare('baseDir', $BASEDIR);
$partial->prepare('baseUrl', $BASEURL);
$partial->render();
?>
<title><?php echo $TITLE ?></title>

View File

@ -1,5 +1,7 @@
<link rel="manifest" href="manifest.json">
<base href="<?php echo $BASEURL; ?>">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Home">
@ -18,6 +20,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="<?php echo $BASEDIR; ?>css/main.css?v2">
<link rel="stylesheet" href="<?php echo $BASEDIR; ?>css/font-awesome.min.css">
<link rel="stylesheet" href="<?php echo $BASEDIR; ?>css/modal.css">

View File

@ -2,8 +2,9 @@
<html lang="en">
<head>
<?php
$partial = new Partial('head');
$partial = new Partial('head');
$partial->prepare('baseDir', $BASEDIR);
$partial->prepare('baseUrl', $BASEURL);
$partial->render();
?>
<title><?php echo $TITLE ?></title>

View File

@ -2,8 +2,9 @@
<html lang="en">
<head>
<?php
$partial = new Partial('head');
$partial = new Partial('head');
$partial->prepare('baseDir', $BASEDIR);
$partial->prepare('baseUrl', $BASEURL);
$partial->render();
?>
<title><?php echo $TITLE ?></title>