Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
6f8e3259
Commit
6f8e3259
authored
Apr 03, 2012
by
Dayle Rees
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added welcome view with link to docs
parent
63a3e2b5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
129 deletions
+82
-129
index.blade.php
application/views/home/index.blade.php
+59
-0
index.php
application/views/home/index.php
+0
-129
style.css
public/laravel/css/style.css
+23
-0
No files found.
application/views/home/index.blade.php
0 → 100644
View file @
6f8e3259
<!doctype html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<title>
Laravel: A Framework For Web Artisans
</title>
<meta
name=
"viewport"
content=
"width=device-width"
>
{{ HTML::style('laravel/css/style.css') }}
</head>
<body
onload=
"prettyPrint()"
>
<div
class=
"wrapper"
>
<header>
<h1>
Laravel
</h1>
<h2>
A Framework For Web Artisans
</h2>
<p
class=
"intro-text"
>
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>
</header>
<div
role=
"main"
class=
"main"
>
<div
class=
"home"
>
<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>
{{ path('app') }}routes.php
</pre>
<p>
And the view sitting before you can be found at:
</p>
<pre>
{{ path('app') }}views/home/index.php
</pre>
<h3>
Read the docs.
</h3>
<p>
The docs are now included with the source package, you can {{ HTML::link('docs', 'read them offline here') }}.
</p>
<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
class=
"out-links"
>
<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>
</div>
</div>
</body>
</html>
application/views/home/index.php
deleted
100644 → 0
View file @
63a3e2b5
<!doctype html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
Laravel - A Framework For Web Artisans
</title>
<style>
@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
;
}
#main
div
.warning
{
background-color
:
#feefb3
;
border
:
1px
solid
;
border-radius
:
5px
;
color
:
#9f6000
;
padding
:
10px
;
}
#main
ul
{
margin
:
10px
0
;
padding
:
0
30px
;
}
#main
li
{
margin
:
5px
0
;
}
</style>
</head>
<body>
<div
id=
"main"
>
<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>
\ No newline at end of file
public/laravel/css/style.css
View file @
6f8e3259
...
...
@@ -235,6 +235,29 @@ code
text-shadow
:
1px
1px
0
#fff
;
}
.home
{
font-size
:
1.1em
;
}
.out-links
{
margin
:
0
;
padding
:
0
;
}
.out-links
li
{
display
:
inline-block
;
}
.out-links
li
:not
(
:first-child
)
:before
{
content
:
"/"
;
padding
:
0
1em
;
color
:
#888
;
}
/* Prettify Styles -------------- */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment