33658e37a3
Signed-off-by: Deon George <deon@leenooks.net>
32 lines
809 B
PHP
32 lines
809 B
PHP
@extends('layouts.app')
|
|
|
|
@section('htmlheader_title')
|
|
Page Title
|
|
@endsection
|
|
|
|
@section('contentheader_title')
|
|
Home Page
|
|
@endsection
|
|
@section('contentheader_description')
|
|
Home
|
|
@endsection
|
|
|
|
@section('main-content')
|
|
<div class="col-sm-2 col-md-offset-0">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">Content</h3>
|
|
<div class="box-tools pull-right">
|
|
<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse">
|
|
<i class="fa fa-minus"></i></button>
|
|
<button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
|
|
<i class="fa fa-times"></i></button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
Content Here
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |