dd2f6ebc77
- All new redefined interface - Faster animations and transitions - Import from Dropbox - Import from Server - Download public albums - Several sorting options - Installation assistent - Infobox and description for albums - Faster loading and improved performance - Better file handling and upload - Album covers are chosen intelligent - Prettier URLs - Massive changes under the hood - IPTC support (Headline and Caption) - EXIF Orientation support How to update: 1. Replace all files, excluding `uploads/` 2. Open Lychee and enter your database details
66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
<!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="assets/css/min/reset.css">
|
|
<link type="text/css" rel="stylesheet" href="assets/css/min/main.css">
|
|
|
|
<link rel="shortcut icon" href="assets/img/favicon.ico">
|
|
|
|
<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);
|
|
|
|
require("php/config.php");
|
|
require("php/modules/db.php");
|
|
require("php/modules/misc.php");
|
|
|
|
$database = dbConnect();
|
|
|
|
echo openGraphHeader($_GET['p']);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</head>
|
|
<body class="view">
|
|
|
|
<!-- Header -->
|
|
<header class="view">
|
|
|
|
<!-- 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="imageview" class="view"></div>
|
|
|
|
<!-- Infobox -->
|
|
<div id="infobox"></div>
|
|
|
|
<!-- JS -->
|
|
<script type="text/javascript" src="assets/js/min/frameworks.js"></script>
|
|
<script type="text/javascript" src="assets/js/modules/build.js"></script>
|
|
<script type="text/javascript" src="assets/js/view.js"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|