-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.php
More file actions
56 lines (50 loc) · 1.54 KB
/
template.php
File metadata and controls
56 lines (50 loc) · 1.54 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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Style Sheets -->
<!-- GLOBAL -->
<link rel="stylesheet" href="/styles/global.css">
<!-- Page related sheets -->
<link rel="stylesheet" href="/styles/index.css">
<link rel="stylesheet" href="/styles/nav.css">
<link rel="stylesheet" href="/styles/misc.css">
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<!-- Title -->
<title>Misc</title>
<!-- Preload Scripts -->
<script src="/scripts/global/nav.js"></script> <!-- gets the current dir -->
</head>
<body onload="getnav()">
<header>
<a href="/">
<img src="/img/four_leaf_pfp.jpg" alt="Pfp">
<span id="header_aline">
Aline B.
</span>
</a>
<nav>
<ul>
<?php if (isset($_SESSION["logged_in"])){echo "<li><a href='/admin/dashboard' style='color:var(--error);'>Dashboard</a></li>";}?>
<li><a href="/" id="active">About Me</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/misc">Misc stuff</a></li>
</ul>
<!-- Photography -->
</nav>
</header>
<main>
<ul class="navigation">
<li>
</li>
</ul>
</main>
</body>
<!-- Post Load Scripts -->
<script src="/scripts/global/footer.js"></script>
</html>