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