welcome_message.php 1.9 KB

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