-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.inc.php
More file actions
29 lines (27 loc) · 870 Bytes
/
header.inc.php
File metadata and controls
29 lines (27 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
$directory = dirname(__FILE__);
$bootstrapPath = "PFBC/Resources/bootstrap/";
if(strpos(getcwd(), "/examples") !== false) {
$bootstrapPath = "../" . $bootstrapPath;
$examplePath = "";
$indexPath = "../index.php";
}
else {
$examplePath = "examples/";
$indexPath = "";
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kapitola 6</title>
<!-- <link href="<?php echo $bootstrapPath; ?>css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo $bootstrapPath; ?>css/bootstrap-responsive.min.css" rel="stylesheet" />-->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="container-fluid">
<?php if(isset($message)) echo $message?>