dcc51497c3
- FTP Sharing - New Upload & New Search - Performance and stuff under the hood - Desktop Notifications - Right-Click on photos and albums - Retina Thumbs - Improved Interface
63 lines
1.5 KiB
PHP
Executable File
63 lines
1.5 KiB
PHP
Executable File
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
<title></title>
|
|
|
|
<meta name="author" content="Tobias Reich, Philipp Maurer">
|
|
<meta name="keywords" content="">
|
|
<meta name="description" content="">
|
|
|
|
<link type="text/css" rel="stylesheet" href="css/animations.css">
|
|
<link type="text/css" rel="stylesheet" href="css/font-awesome.css">
|
|
<link type="text/css" rel="stylesheet" href="css/style.css">
|
|
<link rel="shortcut icon" href="img/favicon.png">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" >
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<?php
|
|
|
|
if(isset($_GET['p'])) {
|
|
|
|
define("LYCHEE", true);
|
|
|
|
include("php/config.php");
|
|
include("php/functions.php");
|
|
|
|
echo facebookHeader($_GET['p']);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
|
|
<!-- Buttons -->
|
|
<div class="tools" id="button_download" title="Full Photo"><a class="icon-resize-full"></a></div>
|
|
<div class="tools" id="button_info" title="Show Info"><a class="icon-info-sign"></a></div>
|
|
|
|
<a id="title" class="view"></a>
|
|
|
|
</header>
|
|
|
|
<!-- ImageView -->
|
|
<div id="image_view"></div>
|
|
|
|
<!-- Infobox -->
|
|
<div id="infobox"></div>
|
|
|
|
<!-- JS -->
|
|
<script type="text/javascript" src="js/frameworks.js"></script>
|
|
<script type="text/javascript" src="js/modules/build.js"></script>
|
|
<script type="text/javascript" src="js/view.js"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|