404.phtml 790 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <?php echo $this->headTitle(); ?>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" >
  7. <?php echo $this->script()->displayHeaderCode(); ?>
  8. <link href="<?php echo $this->baseUrl; ?>/<?php echo $this->themesFolder; ?>/admin/css/style.css" media="screen" rel="stylesheet" type="text/css" >
  9. </head>
  10. <body>
  11. <div class="container">
  12. <div>
  13. <?php echo $this->getContent(); ?>
  14. </div>
  15. <hr>
  16. <footer>
  17. <p>v7.0 &copy; <?php echo date('Y'); ?> Online Ventures Software LTD. All rights reserved.</p>
  18. </footer>
  19. </div> <!-- /container -->
  20. </body>
  21. </html>