welcome_message.php 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. ?><!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>Welcome to CodeIgniter</title>
  8. <style type="text/css">
  9. ::selection { background-color: #E13300; color: white; }
  10. ::-moz-selection { background-color: #E13300; color: white; }
  11. body {
  12. background-color: #fff;
  13. margin: 40px;
  14. font: 13px/20px normal Helvetica, Arial, sans-serif;
  15. color: #4F5155;
  16. }
  17. a {
  18. color: #003399;
  19. background-color: transparent;
  20. font-weight: normal;
  21. }
  22. h1 {
  23. color: #444;
  24. background-color: transparent;
  25. border-bottom: 1px solid #D0D0D0;
  26. font-size: 19px;
  27. font-weight: normal;
  28. margin: 0 0 14px 0;
  29. padding: 14px 15px 10px 15px;
  30. }
  31. code {
  32. font-family: Consolas, Monaco, Courier New, Courier, monospace;
  33. font-size: 12px;
  34. background-color: #f9f9f9;
  35. border: 1px solid #D0D0D0;
  36. color: #002166;
  37. display: block;
  38. margin: 14px 0 14px 0;
  39. padding: 12px 10px 12px 10px;
  40. }
  41. #body {
  42. margin: 0 15px 0 15px;
  43. }
  44. p.footer {
  45. text-align: right;
  46. font-size: 11px;
  47. border-top: 1px solid #D0D0D0;
  48. line-height: 32px;
  49. padding: 0 10px 0 10px;
  50. margin: 20px 0 0 0;
  51. }
  52. #container {
  53. margin: 10px;
  54. border: 1px solid #D0D0D0;
  55. box-shadow: 0 0 8px #D0D0D0;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div id="container">
  61. <h1>Welcome to CodeIgniter!</h1>
  62. <div id="body">
  63. <p>The page you are looking at is being generated dynamically by CodeIgniter.</p>
  64. <p>If you would like to edit this page you'll find it located at:</p>
  65. <code>application/views/welcome_message.php</code>
  66. <p>The corresponding controller for this page is found at:</p>
  67. <code>application/controllers/Welcome.php</code>
  68. <p>If you are exploring CodeIgniter for the very first time, you should start by reading the <a href="user_guide/">User Guide</a>.</p>
  69. </div>
  70. <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT === 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p>
  71. </div>
  72. </body>
  73. </html>