Advertisement
bueddl

Untitled

Sep 29th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.28 KB | None | 0 0
  1. $subtemplate = unserialize( str_replace('\\\'', '\'' ,'s:4:"code";'));
  2. $title = unserialize( str_replace('\\\'', '\'' ,'s:11:"Zugangscode";'));
  3. $has_valid_game = unserialize( str_replace('\\\'', '\'' ,'b:0;'));
  4. ?><!DOCTYPE html>
  5. <html>
  6.     <head>
  7.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  8.         <meta name="viewport" content="initial-scale=1.0, user-scalable = no">
  9.         <title><?= Template::withDefault($title, 'Untitled'); ?></title>
  10.  
  11.         <meta name="author" content="BIllusion">
  12.  
  13.         <!--        Import Styles-->
  14.         <link rel="stylesheet" href="css/style.css">
  15.         <!--        =Import Styles-->
  16.  
  17.  
  18.         <!--        Import Fonts -->
  19.         <link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,200,400italic,200italic,300,300italic,600,600italic,700italic,700,900' rel='stylesheet' type='text/css'>
  20.         <!--       =Import Fonts -->
  21.  
  22.  
  23.         <!--        Import Scripts-->
  24.  
  25.         <!--        =Import Scripts-->
  26.     </head>
  27.     <body>
  28.         <div id="main-wrapper">
  29.             <?php
  30.            if (!empty($subtemplate))
  31.                include(Template::getInclude($subtemplate));
  32.            else
  33.                echo 'No Template specified';
  34.            ?>
  35.         </div>
  36.     </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement