This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
81 lines (77 loc) · 2.37 KB
/
home.php
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
<?php
include('inc/content.class.php');
include('inc/sql.php');
include('inc/conf.inc.php');
?>
<html>
<head>
<title><?php $content->getString("page-title", $db);?></title>
<link rel="stylesheet" href="css/style.css" />
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="js/urlshortener.js"></script>
</head>
<body>
<div id="fix-top"></div>
<div id="wrapper">
<div id="theDiv">
<div id="header">
<div id="block-nav">
<ul id="menu-nav">
<li class="has-flyout">
<a href="index.php"><img src="img/grid-menu.png"></a>
<?php
If ($config['navigation'] == "yes"){
?>
<ul class="flyout">
<li><a href="what.php"><?php $content->getString("what-title", $db);?></a></li>
<li><a href="who.php"><?php $content->getString("who-title", $db);?></a></li>
<li><a href="why.php"><?php $content->getString("why-title", $db);?></a></li>
</ul>
<?php
}
?>
</li>
</ul>
</div>
</div>
<div id="logo">
<a href="index.php"><img src="img/logo.png" class="home" alt="Logo"/></a>
</div>
<div id="container">
<form action="" method="post" id="form">
<input type="text" id="url" name="url" placeholder="<?php $content->getString("textfield", $db);?>" class="">
<input class="button-link" type="submit" value="<?php $content->getString("submit-button", $db);?>">
</form>
</div>
<div id="boundary"></div>
</div>
<div class="hold-info">
<div class="inline info">
<div class="block-text">
<p class="text">
<?php $content->getString("home-1", $db);?>
</p>
</div>
</div>
<div class="inline info">
<div class="block-text">
<p class="text">
<?php $content->getString("home-2", $db);?>
</p>
</div>
</div>
<div class="inline info">
<div class="block-text">
<p class="text">
<?php $content->getString("home-3", $db);?>
</p>
</div>
</div>
</div>
</div>
<footer>
<?php If(file_exists('imprint.php')){?><a href="imprint.php"><?php $content->getString("imprint-title", $db);?></a> | <?php } ?>Proudly powered by <a href="https://github.com/wb7/shmyli">SHortMYLInk</a> | <!-- DONT REMOVE THE FOLLOWING LINK!-->Impressed by <a href="http://www.thierryli.com/">www.thierryli.com</a> - Thanks :)
</footer>
</body>
</html>