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
581d2265
Commit
581d2265
authored
Nov 24, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplified splash pages.
parent
24b7f431
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
213 additions
and
86 deletions
+213
-86
404.php
application/views/error/404.php
+71
-3
500.php
application/views/error/500.php
+71
-3
index.php
application/views/home/index.php
+71
-3
laravel.css
public/css/laravel.css
+0
-77
No files found.
application/views/error/404.php
View file @
581d2265
...
...
@@ -6,13 +6,81 @@
<title>
Error 404 - Not Found
</title>
<style>
<?php
echo
file_get_contents
(
PUBLIC_PATH
.
'css/laravel.css'
);
?>
@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
ul
{
margin
:
10px
0
;
padding
:
0
30px
;
}
#main
li
{
margin
:
5px
0
;
}
</style>
</head>
<body>
<div
id=
"main"
>
<img
src=
"http://laravel.com/img/splash/error.png"
class=
"marker"
>
<?php
$messages
=
array
(
'We need a map.'
,
'I think we\'re lost.'
,
'We took a wrong turn.'
);
?>
<h1>
<?php
echo
$messages
[
mt_rand
(
0
,
2
)];
?>
</h1>
...
...
application/views/error/500.php
View file @
581d2265
...
...
@@ -6,13 +6,81 @@
<title>
Error 500 - Internal Server Error
</title>
<style>
<?php
echo
file_get_contents
(
PUBLIC_PATH
.
'css/laravel.css'
);
?>
@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
ul
{
margin
:
10px
0
;
padding
:
0
30px
;
}
#main
li
{
margin
:
5px
0
;
}
</style>
</head>
<body>
<div
id=
"main"
>
<img
src=
"http://laravel.com/img/splash/error.png"
class=
"marker"
>
<?php
$messages
=
array
(
'Ouch.'
,
'Oh no!'
,
'Whoops!'
);
?>
<h1>
<?php
echo
$messages
[
mt_rand
(
0
,
2
)];
?>
</h1>
...
...
application/views/home/index.php
View file @
581d2265
...
...
@@ -6,13 +6,81 @@
<title>
Laravel - A Framework For Web Artisans
</title>
<style>
<?php
echo
file_get_contents
(
PUBLIC_PATH
.
'css/laravel.css'
);
?>
@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
ul
{
margin
:
10px
0
;
padding
:
0
30px
;
}
#main
li
{
margin
:
5px
0
;
}
</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>
...
...
public/css/laravel.css
deleted
100644 → 0
View file @
24b7f431
@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
;
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
:
50px
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
ul
{
margin
:
10px
0
;
padding
:
0
30px
;
}
#main
li
{
margin
:
5px
0
;
}
#main
.marker
{
float
:
left
;
left
:
-24px
;
top
:
-24px
;
position
:
absolute
;
}
\ No newline at end of file
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