Merge pull request #8 from sander85/fix_title

Fix title and add possibility to modify it
This commit is contained in:
Christian Haschek
2016-08-06 15:03:25 +02:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
<?php
//Set title for your image and mp4 hosting service
define('TITLE', 'PictShare');
//If set, can be added to any image URL to delete the image and all versions of the image
//Must be longer than 10 characters
//Usage example:

View File

@@ -3,7 +3,7 @@
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<title><?php echo TITLE; ?></title>
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">

View File

@@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<title>PictShare</title>
<title><?php echo TITLE; ?></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="copyright" content="Copyright <?php echo date("Y"); ?> PictShare" />
<meta id="viewport" name="viewport" content="width=<?php echo $width ?>, user-scalable=yes" />