Ich habe jetzt länger als ein Jahr nicht mehr an meiner Website gearbeitet und müsste im allgemeinen mal mein zusammengeschustertes Layout auf fehler überprüfen lassen von einem geschulten Auge.
Würde mir jemand von euch dabei helfen?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | <?php /** @var $this \Ilch\Layout\Frontend */ ?><!DOCTYPE html> <html lang= "de" > <head> <meta name= "viewport" content= "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" > <?= $this ->getHeader() ?> <link href= "<?=$this->getVendorUrl('twbs/bootstrap/dist/css/bootstrap.min.css') ?>" rel= "stylesheet" > <link href= "<?=$this->getLayoutUrl('style.css') ?>" rel= "stylesheet" > <?= $this ->getCustomCSS() ?> <script src= "<?=$this->getVendorUrl('twbs/bootstrap/dist/js/bootstrap.min.js') ?>" ></script> <meta name= "description" content= "." > <meta name= "keywords" content= "" > <meta name= "author" content= "" > <link href= "<?=$this->getStaticUrl('css/bootstrap.css')?>" rel= "stylesheet" > <?php echo $this ->getHeader(); ?> <link rel= "icon" href= "<?php echo $this->getStaticUrl('img/favicon.ico'); ?>" type= "image/x-icon" /> <script type= "text/javascript" src= "<?=$this->getStaticUrl('js/bootstrap.js')?>" ></script> </head> <body> <div class = "modal fade" id= "myModal" tabindex= "-1" aria-labelledby= "myModalLabel" aria-hidden= "true" > <div class = "modal-dialog" > <div class = "modal-content" > <div class = "modal-body" > <?= $this ->getBox( 'user' , 'login' ) ?> </div> <div class = "modal-footer" > <button type= "button" class = "btn btn-default" data-dismiss= "modal" >Close</button> </div> </div> </div> </div> <div class = "carousel fade-carousel slide" data-ride= "carousel" data-interval= "3000" id= "bs-carousel" > <!-- Button trigger modal --> <button type= "button" class = "btn btn-primary btn-lg" data-toggle= "modal" data-target= "#myModal" > Login </button> <!-- Wrapper for slides --> <div class = "carousel-inner" > <div class = "item slides active" > <div class = "slide-1" ></div> <div class = "hero" > <hgroup> <h1>eu-de.net</h1> <h2>Community x4z.de</h2> </hgroup> </div> </div> </div> </div> <br> <div id= "main" > <div class = "row" > <div class = "col-lg-2" > <?php echo $this ->getMenu ( 1, '<div class = "panel panel-gaming" > <div align= "center" class = "panel-heading" >%s</div> <div class = "panel-body" > %c </div> </div>' ); ?> </div> <div class = "col-lg-8" > <?php echo $this ->getHmenu(); ?> <br /><br /> <div class = "panel panel-default" id= "headings" > <div class = "panel-body" > <?php echo $this ->getContent(); ?> </div> </div> </div> <div class = "col-lg-2" > <?php echo $this ->getMenu ( 2, '<div class = "panel panel-gaming" > <div align= "center" class = "panel-heading" >%s</div> <div class = "panel-body" > %c </div> </div>' ); ?> </div> </div> <div align= "center" ><?php echo "<b>Website Aktualisierung:<br> </b>" . date ( "d.m.Y - H:i" , filemtime ( basename ( $_SERVER [ "SCRIPT_NAME" ]))); ?> <script type= 'text/javascript' > $(document).ready( function () { $( '.carousel' ).carousel({ interval: 4000 }); }); </script> </div> </body> </html> |
verwendete ilch Version: 2.1.x