SproutCMS

This is the code documentation for the SproutCMS project

source of /skin/unavailable/coming_soon.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>New Website Coming Soon</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.  
  19. </head>
  20. <body>
  21.  
  22. <div class="content">
  23.  
  24. <div class="container">
  25. <img class="logo" src="SKIN/logo.svg" alt="">
  26.  
  27. <h1><span>New Website</span>
  28. <br>Coming Soon</h1>
  29. </div>
  30.  
  31.  
  32. <div class="content_details reverse-text container">
  33.  
  34. <p>For any enquiries, please contact:<br></p>
  35.  
  36. <h2><?php echo Kohana::config('sprout.site_title'); ?></h2>
  37.  
  38. <p><a href="mailto:<?= Enc::html($site_email); ?>"><?= Enc::html($site_email); ?></a></p>
  39.  
  40. </div>
  41. </div>
  42.  
  43. </body>
  44. </html>
  45.