Example #1
0
<?php

require_once "DeploymentDAO.php";
$dao = new DeploymentDAO();
$deployment = $dao->load($_GET['id']);
if (null == $deployment) {
    header("Location: index.php");
}
?>
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Deployment: <?php 
echo $deployment->app;
?>
 (tag <?php 
echo $deployment->deploy_tag;
?>
)</title>

    <!-- Mobile viewport optimized: h5bp.com/viewport -->
    <meta name="viewport" content="width=device-width">

    <link rel="stylesheet" href="css/style.css">

</head>