123456789101112131415161718 |
- <?php
-
- ?>
- <div class="col-xs-12 text-center panel-tag animated zoomIn">
- <h1 class="text-center animated fadeInLeft display-2">
- <i class="fad fa-poop color-warning-900"></i> Module 404
- </h1>
- <h3 class="text-center animated fadeIn">The module you tried accessing doesn't seem to exist yet. Blame Xonos...</h3>
- <p><strong>Module Data</strong>:</p>
- <pre class="text-left" style="display:inline-block;width:40%;border:1px solid #CCC;background-color:rgba(0,0,0,0.25);border-radius:5px;padding:10px;"><?php echo json_encode($_modules[$_SESSION[_sid]['view']], JSON_PRETTY_PRINT); ?></pre>
- </div>
- <script>
- $('.subheader-title').addClass('animated fadeOut');
- setTimeout(function() {
- $('.subheader-title').slideUp('fast');
- },500);
- </script>
|