53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?PHP include("config.php");
|
|
|
|
// need to update code so that users are automatically taken to the page for their individual account here.
|
|
|
|
|
|
// set the page title
|
|
$pagetitle = "Advertisement Insertion Order";
|
|
|
|
// set meta tags
|
|
$meta_keywords = "advert io";
|
|
$meta_description = "tool for requesting an ad isertion";
|
|
?>
|
|
|
|
<? include("include_common_head.php"); ?>
|
|
<body class="listings">
|
|
<? include($common_path . "/ads/ad_wallpaper.html"); ?>
|
|
|
|
<div class="container">
|
|
<? include($common_path . "/templates/include_header.php"); ?>
|
|
<div class="main">
|
|
<div class="contentwrapper clearfix">
|
|
<? include("include_breadcrumb.php"); ?>
|
|
|
|
<section class="section listings section-has-widgets section-static remove-sidebar">
|
|
<div class="sidebar-b">
|
|
<? include("include_sidebar.php"); ?>
|
|
</div>
|
|
|
|
<div class="content content-has-widgets">
|
|
<div class="grid">
|
|
|
|
<div class="clearfix">
|
|
<h1 class="float-left">Advertisement Insertion Order Manager</h1>
|
|
<? /**if (is_logged_in($user)) { ?>
|
|
<a href="<? echo $site_url . '/add.php' ?>" class="btn btn-white float-right">Request IO</a>
|
|
<? }**/ ?>
|
|
<hr class="line" />
|
|
|
|
</div><!-- end col-2/3 -->
|
|
|
|
</div><!-- end grid -->
|
|
</div><!-- end content -->
|
|
</section>
|
|
|
|
</div><!-- end contentwrapper -->
|
|
</div> <!-- end main -->
|
|
|
|
<? include($common_path . "/templates/include_footer.php") ?>
|
|
</div> <!-- container -->
|
|
</body>
|
|
<? include($common_path . "/templates/include_global_js.php") ?>
|
|
</html>
|