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,6 +1,6 @@
|
||||
@extends('layouts.default.app')
|
||||
|
||||
@extends("layouts.${SKIN_NAME}.app")
|
||||
@section('title', 'dashboard')
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-sm-8">
|
||||
@@ -54,7 +54,7 @@
|
||||
<div class="nav nav-tabs" role="tablist" style="background: #067ec1; color: #FFF;">
|
||||
Your Last Report
|
||||
</div>
|
||||
@include('layouts.default.pireps.pirep_card', ['pirep' => $last_pirep])
|
||||
@include("layouts.${SKIN_NAME}.pireps.pirep_card", ['pirep' => $last_pirep])
|
||||
@endif
|
||||
|
||||
{{ Widget::latestNews(['count' => 1]) }}
|
||||
|
||||
Reference in New Issue
Block a user