Rename base.blade.php to app.blade.php
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
### HEAD
|
### HEAD
|
||||||
|
* Rename `base.blade.php` to `app.blade.php` ([#1864](https://github.com/roots/sage/pull/1864))
|
||||||
* Add option to configure build settings ([#1822](https://github.com/roots/sage/pull/1822))
|
* Add option to configure build settings ([#1822](https://github.com/roots/sage/pull/1822))
|
||||||
* Add support for HTML injection ([#1817](https://github.com/roots/sage/pull/1817))
|
* Add support for HTML injection ([#1817](https://github.com/roots/sage/pull/1817))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@include('partials.page-header')
|
@include('partials.page-header')
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@include('partials.page-header')
|
@include('partials.page-header')
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@while(have_posts()) @php(the_post())
|
@while(have_posts()) @php(the_post())
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@include('partials.page-header')
|
@include('partials.page-header')
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@while(have_posts()) @php(the_post())
|
@while(have_posts()) @php(the_post())
|
||||||
@include('partials/content-single-'.get_post_type())
|
@include('partials/content-single-'.get_post_type())
|
||||||
@endwhile
|
@endwhile
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Template Name: Custom Template
|
Template Name: Custom Template
|
||||||
--}}
|
--}}
|
||||||
|
|
||||||
@extends('layouts.base')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
@while(have_posts()) @php(the_post())
|
@while(have_posts()) @php(the_post())
|
||||||
|
|||||||
Reference in New Issue
Block a user