Advertisement
TheFan1968

ZF2-Layout-Tamplate

Sep 8th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.28 KB | None | 0 0
  1. <?php echo $this->doctype(); ?>
  2.  
  3. <html lang="de">
  4.     <head>
  5.         <meta charset="utf-8">
  6.         <?php echo $this->headTitle('skriptbu.de - Leben bis zum Code'); ?>
  7.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  8.         <script src="js/kickstart.js"></script> <!-- KICKSTART -->
  9.         <link href='http://fonts.googleapis.com/css?family=Dosis|Indie+Flower|Annie+Use+Your+Telescope|Quattrocento+Sans|Imprima' rel='stylesheet' type='text/css'>
  10.         <link rel="stylesheet" href="<?php echo $this->basepath().'/css/kickstart.css'?>" media="all" /> <!-- KICKSTART -->
  11.         <link rel="stylesheet" href="<?php echo $this->basepath().'/css/skriptbude_style.css'?>" media="all" />
  12.     </head>
  13.     <body>
  14.         <div id="website" class="col_12">
  15.             <div id="banner" class="col_12">
  16.                 <h1 class="right">skriptbu.de - Leben bis zum Code</h1>
  17.                 <hr class="alt1" />
  18.             </div><!-- Ende banner -->
  19.             <?php echo $this->content; ?>
  20.             <div id="footer" class="col_12">
  21.                 <hr class="alt1" />
  22.                 <p class="center">&copy;2015 by skritbu.de Peter Wendel, Berlin</p>
  23.             </div><!-- Ende Footer -->
  24.         </div><!-- Ende website -->
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement