index.php 2.53 KB
Newer Older
Taylor Otwell committed
1
<!doctype html>
2
<html>
Taylor Otwell committed
3 4 5 6 7 8
	<head>
		<meta charset="utf-8">

		<title>Laravel - A Framework For Web Artisans</title>

		<style>
Taylor Otwell committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
			@import url(http://fonts.googleapis.com/css?family=Ubuntu);

			body {
				background: #eee;
				color: #6d6d6d;
				font: normal normal normal 14px/1.253 Ubuntu, sans-serif;
				margin: 0 0 25px 0;
				min-width: 800px;
				padding: 0;
			}

			#main {
				background-clip: padding-box;
				background-color: #fff;
				border:1px solid #ccc;
				border-radius: 5px;
				box-shadow: 0 0 10px #cdcdcd;
				margin: 25px auto 0;
				padding: 30px;
				width: 700px;
				position: relative;
			}

			#main h1 {
				font-family: 'Ubuntu';
				font-size: 38px;
				letter-spacing: 2px;
				margin: 0 0 10px 0;
				padding: 0;
			}

			#main h2 {
				color: #999;
				font-size: 18px;
				letter-spacing: 3px;
				margin: 0 0 25px 0;
				padding: 0 0 0 0;
			}

			#main h3 {
				color: #999;
				margin-top: 24px;
				padding: 0 0 0 0;
			}

			#main h3 {
				font-size: 18px;
			}

			#main p {
				line-height: 25px;
				margin: 10px 0;
			}

			#main pre {
				background-color: #333;
				border-left: 1px solid #d8d8d8;
				border-top: 1px solid #d8d8d8;
				border-radius: 5px;
				color: #eee;
				padding: 10px;
			}

72 73 74 75 76 77 78 79
			#main div.warning {
				background-color: #feefb3;
				border: 1px solid;
				border-radius: 5px;
				color: #9f6000;
				padding: 10px;
			}

Taylor Otwell committed
80 81 82 83 84 85 86 87
			#main ul {
				margin: 10px 0;
				padding: 0 30px;
			}

			#main li {
				margin: 5px 0;
			}
Taylor Otwell committed
88 89 90 91
		</style>
	</head>
	<body>
		<div id="main">
92
			<h1>Welcome To Laravel</h1>
93

94
			<h2>A Framework For Web Artisans</h2>
95

96 97 98 99 100
			<p>
				You have successfully installed the Laravel framework. Laravel is a simple framework
				that helps web artisans create beautiful, creative applications using elegant, expressive
				syntax. You'll love using it.
			</p>
101

102
			<h3>Learn the terrain.</h3>
103

104 105 106 107
			<p>
				You've landed yourself on our default home page. The route that
				is generating this page lives at:
			</p>
108

109
			<pre><code>APP_PATH/routes.php</code></pre>
110

111
			<p>And the view sitting before you can be found at:</p>
112

113
			<pre><code>APP_PATH/views/home/index.php</code></pre>
Taylor Otwell committed
114

115
			<h3>Create something beautiful.</h3>
Taylor Otwell committed
116

117 118 119 120
			<p>
				Now that you're up and running, it's time to start creating!
				Here are some links to help you get started:
			</p>
Taylor Otwell committed
121

122 123 124 125 126
			<ul>
				<li><a href="http://laravel.com">Official Website</a></li>
				<li><a href="http://forums.laravel.com">Laravel Forums</a></li>
				<li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
			</ul>
Taylor Otwell committed
127 128
		</div>
	</body>
129
</html>