В папке Row
files открываем clean
blog и файл post.html
Открываем файл
\resources\views\welcome.blade.php и переименовываем
его в файл app.blade.php и
сохраняем в папку user. Удаляем
из него весь главный контент.
В папке user
создаем файл home.blade.php.
В нем пишем:
@extends('user/app')
Открываем файл:
\routes\web.php и меняем
домашнюю страницу:
Route::get('/',
function () {
return view('user/home');
});
return view('user/home');
});
В app.blade.php
пишем:
<!DOCTYPE
html>
<html lang="en">
<head>
@include('user/layouts/head')
</head>
<body>
@include('user/layouts/header')
@section('main-content')
@show // если убрать эту строку, то ничего не будет показывать
@include('user/layouts/footer')
</body>
</html>
<html lang="en">
<head>
@include('user/layouts/head')
</head>
<body>
@include('user/layouts/header')
@section('main-content')
@show // если убрать эту строку, то ничего не будет показывать
@include('user/layouts/footer')
</body>
</html>
В файл
home.blade.php
@extends('user/app')
@section('main-content')
<!--
Main Content -->
<div
class="container">
<div
class="row">
<div
class="col-lg-8 col-md-10 mx-auto">
<div
class="post-preview">
<a
href="post.html">
<h2
class="post-title">
Man
must explore, and this is exploration at its greatest
</h2>
<h3
class="post-subtitle">
Problems
look mighty small from 150 miles up
</h3>
</a>
<p
class="post-meta">Posted by
<a
href="#">Start Bootstrap</a>
on
September 24, 2017</p>
</div>
<hr>
<div
class="post-preview">
<a
href="post.html">
<h2
class="post-title">
I
believe every human has a finite number of heartbeats. I don't intend
to waste any of mine.
</h2>
</a>
<p
class="post-meta">Posted by
<a
href="#">Start Bootstrap</a>
on
September 18, 2017</p>
</div>
<hr>
<div
class="post-preview">
<a
href="post.html">
<h2
class="post-title">
Science
has not yet mastered prophecy
</h2>
<h3
class="post-subtitle">
We
predict too much for the next year and yet far too little for the
next ten.
</h3>
</a>
<p
class="post-meta">Posted by
<a
href="#">Start Bootstrap</a>
on
August 24, 2017</p>
</div>
<hr>
<div
class="post-preview">
<a
href="post.html">
<h2
class="post-title">
Failure
is not an option
</h2>
<h3
class="post-subtitle">
Many
say exploration is part of our destiny, but it’s actually our duty
to future generations.
</h3>
</a>
<p
class="post-meta">Posted by
<a
href="#">Start Bootstrap</a>
on
July 8, 2017</p>
</div>
<hr>
<!--
Pager -->
<div
class="clearfix">
<a
class="btn btn-secondary float-right" href="#">Older
Posts →</a>
</div>
</div>
</div>
</div>
<hr>
@endsection
Открываем
views\user\layouts\head.blade.php
<meta
charset="utf-8">
<meta name="viewport" content="width=device-width,
initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Clean Blog - Start Bootstrap Theme</title>
<!-- Bootstrap core CSS -->
<link href="{{
asset('user/vendor/bootstrap/css/bootstrap.min.css') }}"
rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="{{
asset('user/vendor/font-awesome/css/font-awesome.min.css') }}"
rel="stylesheet" type="text/css">
<link
href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic'
rel='stylesheet' type='text/css'>
<link
href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'
rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="{{ asset('user/css/clean-blog.min.css') }}"
rel="stylesheet">
@section('head')
@show
Открываем
views\user\layouts\footer.blade.php
<!--
Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x
fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x
fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x
fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">Copyright
© Your Website 2017</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="{{ asset('user/vendor/jquery/jquery.min.js')
}}"></script>
<script src="{{ asset('user/vendor/popper/popper.min.js')
}}"></script>
<script src="{{
asset('user/vendor/bootstrap/js/bootstrap.min.js') }}"></script>
<!-- Custom scripts for this template -->
<script src="{{ asset('user/js/clean-blog.min.js')
}}"></script>
@section('footer')
@show
Открываем
файл: \routes\web.php и
меняем домашнюю страницу:
Route::get('/',
function () {
return view('user/blog');
});
return view('user/blog');
});
Переименуем
home.blade.php в blog.blade.php
Создадим
файл для отображения поста
views\user\post.blade.php и напишем там:
@extends('user/app')
Создадим
маршрут: \routes\web.php
Route::get('post',
function () {
return view('user/post');
});
return view('user/post');
});
Теперь
у нас отображается страница с пустым
шаблоном. Создадим секцию.
Идем
во views\user\post.blade.php и напишем там:
@extends('user/app')
@section('main-content')
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<p>Never in all their history have men been able truly to
conceive of the world as one: a single sphere, a globe, having the
qualities of a globe, a round earth in which all the directions
eventually meet, in which there is no center because every point, or
none, is center — an equal earth which all men occupy as equals.
The airman's earth, if free men make it, will be truly round: a globe
in practice, not in theory.</p>
<p>Science cuts two ways, of course; its products can be
used for both good and evil. But there's no turning back from
science. The early warnings about technological dangers also come
from science.</p>
<p>What was most significant about the lunar voyage was
not that man set foot on the Moon but that they set eye on the
earth.</p>
<p>A Chinese tale tells of some men sent to harm a young
girl who, upon seeing her beauty, become her protectors rather than
her violators. That's how I felt seeing the Earth for the first time.
I could not help but love and cherish her.</p>
<p>For those who have seen the Earth from space, and for
the hundreds and perhaps thousands more who will, the experience most
certainly changes your perspective. The things that we share in our
world are far more valuable than those which divide us.</p>
<h2 class="section-heading">The Final
Frontier</h2>
<p>There can be no thought of finishing for ‘aiming for
the stars.’ Both figuratively and literally, it is a task to occupy
the generations. And no matter how much progress one makes, there is
always the thrill of just beginning.</p>
<p>There can be no thought of finishing for ‘aiming for
the stars.’ Both figuratively and literally, it is a task to occupy
the generations. And no matter how much progress one makes, there is
always the thrill of just beginning.</p>
<blockquote class="blockquote">The dreams of
yesterday are the hopes of today and the reality of tomorrow. Science
has not yet mastered prophecy. We predict too much for the next year
and yet far too little for the next ten.</blockquote>
<p>Spaceflights cannot be stopped. This is not the work
of any one man or even a group of men. It is a historical process
which mankind is carrying out in accordance with the natural laws of
human development.</p>
<h2 class="section-heading">Reaching for the
Stars</h2>
<p>As we got further and further away, it [the Earth]
diminished in size. Finally it shrank to the size of a marble, the
most beautiful you can imagine. That beautiful, warm, living object
looked so fragile, so delicate, that if you touched it with a finger
it would crumble and fall apart. Seeing this has to change a man.</p>
<a href="#">
<img class="img-fluid"
src="img/post-sample-image.jpg" alt="">
</a>
<span class="caption text-muted">To go places
and do things that have never been done before – that’s what
living is all about.</span>
<p>Space, the final frontier. These are the voyages of
the Starship Enterprise. Its five-year mission: to explore strange
new worlds, to seek out new life and new civilizations, to boldly go
where no man has gone before.</p>
<p>As I stand out here in the wonders of the unknown at
Hadley, I sort of realize there’s a fundamental truth to our
nature, Man must explore, and this is exploration at its
greatest.</p>
<p>Placeholder text by
<a href="http://spaceipsum.com/">Space
Ipsum</a>. Photographs by
<a href="https://www.flickr.com/photos/nasacommons/">NASA
on The Commons</a>.</p>
</div>
</div>
</div>
</article>
<hr>
@endsection
Идем в файл:
\views\user\layouts\header.blade.php
Находим
строку: <header class="masthead"
style="background-image: url('{{ asset('user/img/home-bg.jpg')
}}')">
И
меняем:
<header class="masthead" style="background-image:
url(@yield('bg-img'))">
Идем
во views\user\post.blade.php и напишем там для
отображения картинки фона:
@extends('user/app')
@section('bg-img',
asset('user/img/post-bg.jpg'))
@section('main-content')
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<p>Never in all their history have men been able truly to
conceive of the world as one: a single sphere, a globe, having the
qualities of a globe, a round earth in which all the directions
eventually meet, in which there is no center because every point, or
none, is center — an equal earth which all men occupy as equals.
The airman's earth, if free men make it, will be truly round: a globe
in practice, not in theory.</p>
<p>Science cuts two ways, of course; its products can be
used for both good and evil. But there's no turning back from
science. The early warnings about technological dangers also come
from science.</p>
<p>What was most significant about the lunar voyage was
not that man set foot on the Moon but that they set eye on the
earth.</p>
<p>A Chinese tale tells of some men sent to harm a young
girl who, upon seeing her beauty, become her protectors rather than
her violators. That's how I felt seeing the Earth for the first time.
I could not help but love and cherish her.</p>
<p>For those who have seen the Earth from space, and for
the hundreds and perhaps thousands more who will, the experience most
certainly changes your perspective. The things that we share in our
world are far more valuable than those which divide us.</p>
<h2 class="section-heading">The Final
Frontier</h2>
<p>There can be no thought of finishing for ‘aiming for
the stars.’ Both figuratively and literally, it is a task to occupy
the generations. And no matter how much progress one makes, there is
always the thrill of just beginning.</p>
<p>There can be no thought of finishing for ‘aiming for
the stars.’ Both figuratively and literally, it is a task to occupy
the generations. And no matter how much progress one makes, there is
always the thrill of just beginning.</p>
<blockquote class="blockquote">The dreams of
yesterday are the hopes of today and the reality of tomorrow. Science
has not yet mastered prophecy. We predict too much for the next year
and yet far too little for the next ten.</blockquote>
<p>Spaceflights cannot be stopped. This is not the work
of any one man or even a group of men. It is a historical process
which mankind is carrying out in accordance with the natural laws of
human development.</p>
<h2 class="section-heading">Reaching for the
Stars</h2>
<p>As we got further and further away, it [the Earth]
diminished in size. Finally it shrank to the size of a marble, the
most beautiful you can imagine. That beautiful, warm, living object
looked so fragile, so delicate, that if you touched it with a finger
it would crumble and fall apart. Seeing this has to change a man.</p>
<a href="#">
<img class="img-fluid"
src="img/post-sample-image.jpg" alt="">
</a>
<span class="caption text-muted">To go places
and do things that have never been done before – that’s what
living is all about.</span>
<p>Space, the final frontier. These are the voyages of
the Starship Enterprise. Its five-year mission: to explore strange
new worlds, to seek out new life and new civilizations, to boldly go
where no man has gone before.</p>
<p>As I stand out here in the wonders of the unknown at
Hadley, I sort of realize there’s a fundamental truth to our
nature, Man must explore, and this is exploration at its
greatest.</p>
<p>Placeholder text by
<a href="http://spaceipsum.com/">Space
Ipsum</a>. Photographs by
<a href="https://www.flickr.com/photos/nasacommons/">NASA
on The Commons</a>.</p>
</div>
</div>
</div>
</article>
<hr>
@endsection
Идем
в blog.blade.php и меняем
картинку и там:
@section('bg-img',
asset('user/img/home-bg.jpg'))
Идем в файл:
\views\user\layouts\header.blade.php и меняем заголовок
страницы:
<h1>Clean
Blog</h1> на
<h1>@yield('title')</h1>
<span
class="subheading">@yield('sub-heading')</span>
Идем
в post.blade.php и подключаем
заголовок и подзаголовок:
@section('title',
'Bitfumes Post')
@section('sub-heading',
'Learn together and grow together')
Идем
в blog.blade.php и
подключаем заголовок и подзаголовок:
@section('title',
'Bitfumes blog')
@section('sub-heading',
'Learn together and grow together')
В
blog.blade.php сделаем
ссылки на посты:
a
href="{{ route('post') }}">
Назначим имя
для маршрута: \routes\web.php
Route::get('post',
function () {
return view('user/post');
})->name('post');
return view('user/post');
})->name('post');
Комментариев нет:
Отправить комментарий