54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>Laravel - A Framework For Web Artisans</title>
|
|
|
|
<style>
|
|
<?php echo file_get_contents(PUBLIC_PATH.'css/laravel.css'); ?>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<img src="http://laravel.com/img/splash/check.png" class="marker">
|
|
|
|
<h1>Welcome To Laravel</h1>
|
|
|
|
<h2>A Framework For Web Artisans</h2>
|
|
|
|
<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>
|
|
|
|
<h3>Learn the terrain.</h3>
|
|
|
|
<p>
|
|
You've landed yourself on our default home page. The route that
|
|
is generating this page lives at:
|
|
</p>
|
|
|
|
<pre><code>APP_PATH/routes.php</code></pre>
|
|
|
|
<p>And the view sitting before you can be found at:</p>
|
|
|
|
<pre><code>APP_PATH/views/home/index.php</code></pre>
|
|
|
|
<h3>Create something beautiful.</h3>
|
|
|
|
<p>
|
|
Now that you're up and running, it's time to start creating!
|
|
Here are some links to help you get started:
|
|
</p>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|