4e5c836b8d
- Share whole albums - Public Mode - Import images via URL - New Share-Button - Improved Toolbar - Check for updates (see config.php) - ASC or DESC sorting (see config.php) - Download album fixed - Code optimizations (thanks @tibounise) - Changes and enhancements Update from version 1.0 or 1.1: 1. Replace all files, excluding `uploads/` 2. Open php/config.php and reconfigure your installation (We added new settings) 3. Open php/update.php in your browser
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);
|
|
|
|
require("php/config.php");
|
|
require("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>
|