alltube/maintenance.php

45 lines
955 B
PHP
Raw Normal View History

2014-05-15 18:31:44 +00:00
<?php
/**
* PHP web interface for youtube-dl (http://rg3.github.com/youtube-dl/)
* Index page
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
2015-01-07 09:47:46 +00:00
* @author Pierre Rudloff <contact@rudloff.pro>
2014-05-15 18:31:44 +00:00
* @author Olivier Haquette <contact@olivierhaquette.fr>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
2015-01-07 09:42:44 +00:00
require_once 'config.php';
if (!MAINTENANCE) {
header('Location: index.php'); exit;
}
2014-05-15 18:31:44 +00:00
require 'head.php';
?>
<body>
<?php
require 'header.php';
?>
<div class="wrapper">
<div class="main">
<h1><img itemprop="image" class="logo" src="img/logo.png"
alt="AllTube Download" width="328" height="284"></h1>
2015-01-07 09:42:44 +00:00
<div>Due to some issues with our server,
we have to disable AllTube for a few days.
Sorry for the inconvenience.</div>
2014-05-15 18:31:44 +00:00
</div>
</div>
<?php
require 'footer.php';
?>
</body>
</html>