You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/view.php

66 lines
1.6 KiB

12 years ago
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
10 years ago
<title>Lychee</title>
12 years ago
10 years ago
<meta name="author" content="Tobias Reich">
12 years ago
<meta name="keywords" content="">
<meta name="description" content="">
10 years ago
<!-- CSS -->
<link type="text/css" rel="stylesheet" href="assets/min/main.css">
10 years ago
<link rel="shortcut icon" href="favicon.ico">
10 years ago
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon-iphone.png" sizes="120x120">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon-ipad.png" sizes="152x152">
12 years ago
10 years ago
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
12 years ago
<meta name="apple-mobile-web-app-capable" content="yes">
<?php
if(isset($_GET['p'])) {
define("LYCHEE", true);
10 years ago
require("data/config.php");
require("php/modules/Module.php");
require("php/modules/Database.php");
require("php/modules/misc.php");
$database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);
echo getGraphHeader($database, $_GET['p']);
}
?>
12 years ago
</head>
<body class="view">
12 years ago
<!-- Header -->
<header class="view">
12 years ago
<!-- Buttons -->
<div class="tools" id="button_direct" title="Direct Link"><a class="icon-link"></a></div>
12 years ago
<div class="tools" id="button_info" title="Show Info"><a class="icon-info-sign"></a></div>
<a id="title" class="view"></a>
12 years ago
</header>
12 years ago
<!-- ImageView -->
<div id="imageview" class="view"></div>
12 years ago
<!-- Infobox -->
<div id="infobox"></div>
<!-- JS -->
<script type="text/javascript" src="assets/min/view.js"></script>
12 years ago
</body>
</html>