Add a reference to the skin name in the templates to make it easier to create and modify skins
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
@extends('layouts.default.app')
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'file pirep')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@@ -7,12 +8,13 @@
|
||||
@include('flash::message')
|
||||
{!! Form::open(['route' => 'frontend.pireps.store']) !!}
|
||||
|
||||
@include('layouts.default.pireps.fields')
|
||||
@include("layouts.${SKIN_NAME}.pireps.fields")
|
||||
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
Reference in New Issue
Block a user