Den Code habe ich soweit ;
1 2 3 4 5 6 7 | #background_archive{ background-image: url(../images/archive_background.png); width:534px;height:656px; position:absolute; bottom:0; right:0; } |
1 | <div class="background_logo"></div> |
Der Code vom Lister ;
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | <!DOCTYPE html> <html> <head> <title>Directory listing of <?php echo $lister ->getListedPath(); ?></title> <link rel= "shortcut icon" href= "<?php echo THEMEPATH; ?>/img/folder.png" > <!-- STYLES --> <link rel= "stylesheet" href= "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" > <link rel= "stylesheet" href= "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" > <link rel= "stylesheet" type= "text/css" href= "<?php echo THEMEPATH; ?>/css/style.css" > <!-- SCRIPTS --> <script type= "text/javascript" src= "//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js" ></script> <script src= "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" ></script> <script type= "text/javascript" src= "<?php echo THEMEPATH; ?>/js/directorylister.js" ></script> <!-- FONTS --> <link rel= "stylesheet" type= "text/css" href= "//fonts.googleapis.com/css?family=Cutive+Mono" > <!-- META --> <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <meta charset= "utf-8" > <?php file_exists ( 'analytics.inc' ) ? include ( 'analytics.inc' ) : false; ?> </head> <body> <div id= "page-navbar" class = "navbar navbar-default navbar-fixed-top" > <div class = "container" > <?php $breadcrumbs = $lister ->listBreadcrumbs(); ?> <p class = "navbar-text" > <?php foreach ( $breadcrumbs as $breadcrumb ): ?> <?php if ( $breadcrumb != end ( $breadcrumbs )): ?> <a href= "<?php echo $breadcrumb['link']; ?>" ><?php echo $breadcrumb [ 'text' ]; ?></a> <span class = "divider" >/</span> <?php else : ?> <?php echo $breadcrumb [ 'text' ]; ?> <?php endif ; ?> <?php endforeach ; ?> </p> <div class = "navbar-right" > <ul id= "page-top-nav" class = "nav navbar-nav" > <li> <a href= "javascript:void(0)" id= "page-top-link" > <i class = "fa fa-arrow-circle-up fa-lg" ></i> </a> </li> </ul> <?php if ( $lister ->isZipEnabled()): ?> <ul id= "page-top-download-all" class = "nav navbar-nav" > <li> <a href= "?zip=<?php echo $lister->getDirectoryPath(); ?>" id= "download-all-link" > <i class = "fa fa-download fa-lg" ></i> </a> </li> </ul> <?php endif ; ?> </div> </div> </div> <div id= "page-content" class = "container" > <?php file_exists ( 'header.php' ) ? include ( 'header.php' ) : include ( $lister ->getThemePath(true) . "/default_header.php" ); ?> <?php if ( $lister ->getSystemMessages()): ?> <?php foreach ( $lister ->getSystemMessages() as $message ): ?> <div class = "alert alert-<?php echo $message['type']; ?>" > <?php echo $message [ 'text' ]; ?> <a class = "close" data-dismiss= "alert" href= "#" >×</a> </div> <?php endforeach ; ?> <?php endif ; ?> <div id= "directory-list-header" > <div class = "row" > <div class = "col-md-7 col-sm-6 col-xs-10" >File</div> <div class = "col-md-2 col-sm-2 col-xs-2 text-right" >Size</div> <div class = "col-md-3 col-sm-4 hidden-xs text-right" >Last Modified</div> </div> </div> <ul id= "directory-listing" class = "nav nav-pills nav-stacked" > <?php foreach ( $dirArray as $name => $fileInfo ): ?> <li data-name= "<?php echo $name; ?>" data-href= "<?php echo $fileInfo['url_path']; ?>" > <a href= "<?php echo $fileInfo['url_path']; ?>" class = "clearfix" data-name= "<?php echo $name; ?>" > <div class = "row" > <span class = "file-name col-md-7 col-sm-6 col-xs-9" > <i class = "fa <?php echo $fileInfo['icon_class']; ?> fa-fw" ></i> <?php echo $name ; ?> </span> <span class = "file-size col-md-2 col-sm-2 col-xs-3 text-right" > <?php echo $fileInfo [ 'file_size' ]; ?> </span> <span class = "file-modified col-md-3 col-sm-4 hidden-xs text-right" > <?php echo $fileInfo [ 'mod_time' ]; ?> </span> </div> </a> <?php if ( is_file ( $fileInfo [ 'file_path' ])): ?> <a href= "javascript:void(0)" class = "file-info-button" > <i class = "fa fa-info-circle" ></i> </a> <?php else : ?> <?php if ( $lister ->containsIndex( $fileInfo [ 'file_path' ])): ?> <a href= "<?php echo $fileInfo['file_path']; ?>" class = "web-link-button" <?php if ( $lister ->externalLinksNewWindow()): ?>target= "_blank" <?php endif ; ?>> <i class = "fa fa-external-link" ></i> </a> <?php endif ; ?> <?php endif ; ?> </li> <?php endforeach ; ?> </ul> </div> <?php file_exists ( 'footer.php' ) ? include ( 'footer.php' ) : include ( $lister ->getThemePath(true) . "/default_footer.php" ); ?> <div id= "file-info-modal" class = "modal fade" > <div class = "modal-dialog" > <div class = "modal-content" > <div class = "modal-header" > <button type= "button" class = "close" data-dismiss= "modal" >×</button> <h4 class = "modal-title" >{{modal_header}}</h4> </div> <div class = "modal-body" > <table id= "file-info" class = "table table-bordered" > <tbody> <tr> <td class = "table-title" >MD5</td> <td class = "md5-hash" >{{md5_sum}}</td> </tr> <tr> <td class = "table-title" >SHA1</td> <td class = "sha1-hash" >{{sha1_sum}}</td> </tr> </tbody> </table> </div> </div> </div> </div> </body> </html> |