WIP: Standard backend theme page and login

Signed-off-by: Deon George <deon@leenooks.net>
This commit is contained in:
Deon George
2017-12-12 16:28:49 +11:00
parent e594ff2057
commit 33658e37a3
45 changed files with 1150 additions and 896 deletions

View File

@@ -0,0 +1,32 @@
@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