-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
113 lines (107 loc) · 3.9 KB
/
header.php
File metadata and controls
113 lines (107 loc) · 3.9 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
Name : Shotgun and Shells
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20121203
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Završni rad - majugurci | <?php echo $page_title; ?></title>
<link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<link href="css/majugurci.css" rel="stylesheet" type="text/css" media="screen" />
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>-->
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<!--<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>-->
<!--<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.9.8/TweenMax.min.js"></script>-->
<script type="text/javascript" src="js/greensock/minified/TweenMax.min.js"></script>
<!--<script type="text/javascript" src="js/razno.js"></script>-->
<?php
if ($page_title == "FIFO") {
echo '<script type="text/javascript" src="js/fifo.js"></script>';
}
if ($page_title == "Podaci") {
echo '<script type="text/javascript" src="js/podaci.js"></script>';
//echo '<script type="text/javascript" src="js/jquery.jeditable.mini.js"></script>';
}
if ($page_title == "SJN") {
echo '<script type="text/javascript" src="js/sjn.js"></script>';
}
if ($page_title == "RR") {
echo '<script type="text/javascript" src="js/rr.js"></script>';
}
if ($page_title == "By Priority") {
echo '<script type="text/javascript" src="js/byPriority.js"></script>';
}
if ($page_title == "rezultati") {
echo '<script type="text/javascript" src="js/rezultati.js"></script>';
}
?>
</head>
<body>
<div id="menu-wrapper">
<div id="menu">
<ul>
<?php
if ($page_title == "Početna") {
echo '<li class="current_page_item"><a href="index.php">Početna</a></li>';
}
else {
echo '<li><a href="index.php">Početna</a></li>';
}
if ($page_title == "Podaci") {
echo '<li class="current_page_item"><a href="podaci.php">Podaci</a></li>';
}
else {
echo '<li><a href="podaci.php">Podaci</a></li>';
}
if ($page_title == "FIFO") {
echo '<li class="current_page_item"><a href="fifo.php">FIFO</a></li>';
}
else {
echo '<li><a href="fifo.php">FIFO</a></li>';
}
if ($page_title == "SJN") {
echo '<li class="current_page_item"><a href="sjn.php">SJN</a></li>';
}
else {
echo '<li><a href="sjn.php">SJN</a></li>';
}
if ($page_title == "RR") {
echo '<li class="current_page_item"><a href="rr.php">RR</a></li>';
}
else {
echo '<li><a href="rr.php">RR</a></li>';
}
if ($page_title == "By Priority") {
echo '<li class="current_page_item"><a href="byPriority.php">By Priority</a></li>';
}
else {
echo '<li><a href="byPriority.php">By Priority</a></li>';
}
if ($page_title == "rezultati") {
echo '<li class="current_page_item"><a href="rezultati.php">Rezultati</a></li>';
}
else {
echo '<li><a href="rezultati.php">Rezultati</a></li>';
}
?>
</ul>
</div>
<!-- end #menu -->
</div>
<div id="wrapper">
<div id="header-wrapper">
<div id="header">
<div id="logo">
<h1><a href="#">Simulacija raspoređivanja procesorskog vremena</a></h1>
<p><span id="credit">by: </span> Mario Jugurčić</p>
</div>
</div>
</div>
<!-- end #header -->