12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!--
- This file is part of centurio.work/commands.
-
- centurio.work/commands is free software: you can redistribute it and/or
- modify it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or (at your
- option) any later version.
-
- centurio.work/commands is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- more details.
-
- You should have received a copy of the GNU General Public License along with
- centurio.work/commands (file COPYING in the main directory). If not, see
- <http://www.gnu.org/licenses/>.
- -->
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Design</title>
-
- <!-- libs, do not modify. When local than load local libs. -->
- <script type="text/javascript" src="/js_libs/jquery.min.js"></script>
- <script type="text/javascript" src="/js_libs/jquery.browser.js"></script>
-
-
- <link rel="icon" href="favicon.ico">
- <link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
-
- <style>
- .linkwrap { position:relative; display:inline-block; height: 200px; width: 100% }
- .blocker { position:absolute; height:100%; width:100%; z-index:1;}
- .linkwrap iframe { z-index: 2; }
- </style>
-
- </head>
- <script>
- $(document).ready(function() {
- });
- </script>
- <body >
- <?php
- $scan = scandir('./');
- foreach($scan as $file) {
- if (is_dir("./$file") && $file != '.' && $file != '..' && $file != 'styles' && $file != '.git') {
- ?>
- <a href="https://centurio.evva.com/services/frames_support/<?php echo $file;?>/config.html">
- <h1><?php echo ucfirst($file);?>:</h1>
- </a>
- <a href="https://centurio.evva.com/services/frames_support/<?php echo $file;?>/config.html" class="linkwrap">
- <div class="blocker"></div>
- <iframe width="100%" height="200" id="previewframe" src="./<?php echo $file;?>/preview.html" title="<?php echo $file;?>" frameborder="0"></iframe>
- </a>
- <?php
- }
- }
- ?>
- </body>
- </html>
|