Work on welcome page
This commit is contained in:
@@ -7,9 +7,6 @@
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- FavIcon -->
|
||||
<link rel="icon" href="../../favicon.ico">
|
||||
|
||||
<!-- Application Title -->
|
||||
<title>Laravel Application</title>
|
||||
|
||||
@@ -29,7 +26,7 @@
|
||||
<body>
|
||||
<!-- Static navbar -->
|
||||
<nav class="navbar navbar-default navbar-static-top" role="navigation">
|
||||
<div class="container-fluid">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
||||
<span class="sr-only">Toggle Navigation</span>
|
||||
@@ -37,7 +34,7 @@
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">Laravel</a>
|
||||
<a class="navbar-brand" href="/">Laravel</a>
|
||||
</div>
|
||||
|
||||
<div id="navbar" class="navbar-collapse collapse">
|
||||
@@ -63,13 +60,13 @@
|
||||
<li><a href="/auth/register"><i class="fa fa-btn fa-user"></i>Register</a></li>
|
||||
</ul>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@yield('banner')
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="container">
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,5 +1,65 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
Test
|
||||
@section('banner')
|
||||
<div class="jumbotron">
|
||||
<div class="container">
|
||||
<h1 class="jumbotron__header">Welcome to Laravel 5!</h1>
|
||||
|
||||
<p class="jumbotron__body">
|
||||
Laravel is a web application framework with expressive, elegant syntax. We believe development
|
||||
must be an enjoyable, creative experience to be truly fulfilling.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<ol class="steps">
|
||||
<li class="steps__item">
|
||||
<div class="body">
|
||||
<h2>Have a Look Around</h2>
|
||||
|
||||
<p>
|
||||
Review <code>app/Http/Controllers/WelcomeController.php</code> to learn
|
||||
how this page was constructed.
|
||||
</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="steps__item">
|
||||
<div class="body">
|
||||
<h2>Harness Your Skills</h2>
|
||||
|
||||
<p>
|
||||
Once you've toyed around for a bit, you'll surely want to dig in and
|
||||
learn more. Try:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="http://laravel.com/docs">Laravel Documentation</a></li>
|
||||
<li><a href="https://laracasts.com">Laravel 5 From Scratch (via Laracasts)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="steps__item">
|
||||
<div class="body">
|
||||
<h2>Forge Ahead</h2>
|
||||
|
||||
<p>
|
||||
Finished building your app? It's time to deploy! Laravel still has your back. Use <a href="https://forge.laravel.com">Laravel Forge</a>.
|
||||
</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="steps__item">
|
||||
<div class="body">
|
||||
<h2>Profit</h2>
|
||||
|
||||
<p>
|
||||
...and go be with your family.
|
||||
</p>
|
||||
</div>
|
||||
</li>
|
||||
</ol>
|
||||
@stop
|
||||
|
||||
Reference in New Issue
Block a user