-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (56 loc) · 1.55 KB
/
Copy pathindex.php
File metadata and controls
61 lines (56 loc) · 1.55 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
<?php
include "inc/load_bookmarks_html.php";
//$headerColor = getMainColor("http://www.google.com/s2/favicons?domain_url=mobilarena.hu");
//echo $headerColor;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="main.css">
<title>Startpage - Richard Hriech</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>BOOKMARKS</h1>
<h3>© 2016 Richárd Hriech</h3>
</div>
<div class="category">
<h2>Favorites</h2>
<div class="toggle-button"></div>
<div class="link-list">
<?php
loadBookmarksHtml("Favorites");
?>
</div>
</div>
<div class="category">
<h2>Other Bookmarks</h2>
<div class="toggle-button"></div>
<ul class="link-list">
<?php
loadBookmarksHtml("Other Bookmarks");
?>
</ul>
</div>
<div class="category">
<h2>Pirate Life</h2>
<div class="toggle-button"></div>
<ul class="link-list">
<?php
loadBookmarksHtml("Pirate Life");
?>
</ul>
</div>
</div>
<script src="js/jquery-3.0.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/slidedown.js" type="text/javascript" charset="utf-8"></script>
<script src="js/beforeunload.js" type="text/javascript" charset="utf-8"></script>
<script src="js/analytics.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>