SproutCMS

This is the code documentation for the SproutCMS project

source of /skin/unavailable/maintenance.php

  1. <?php
  2. use Sprout\Helpers\Enc;
  3.  
  4. $site_email = Kohana::config('sprout.info_email');
  5. ?>
  6. <!DOCTYPE html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="utf-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=Edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12.  
  13. <title>Website Currently Undergoing Maintenance</title>
  14.  
  15. <link href="SKIN/style.css" rel="stylesheet">
  16.  
  17. <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
  18. </head>
  19. <body>
  20.  
  21. <div class="content">
  22.  
  23. <div class="container">
  24. <img class="logo" src="SKIN/logo.svg" alt="">
  25.  
  26. <h1><span>Website Currently <br></span>Undergoing Maintenance</h1>
  27. </div>
  28.  
  29. <div class="content_details reverse-text container">
  30.  
  31. <p>For any enquiries, please contact:<br></p>
  32.  
  33. <h2><?php echo Kohana::config('sprout.site_title'); ?></h2>
  34.  
  35. <p><a href="mailto:<?= Enc::html($site_email); ?>"><?= Enc::html($site_email); ?></a></p>
  36.  
  37. </div>
  38. </div>
  39.  
  40. </div>
  41. </body>
  42. </html>
  43.