20
|
1 |
@extends('app') |
|
2 |
|
|
3 |
@section('title', 'Document detail') |
|
4 |
|
28
|
5 |
@section('meta') |
|
6 |
@parent |
|
7 |
<meta name="bo-client/config/environment" content="{!! rawurlencode($boClientEnv) !!}"> |
|
8 |
<meta name="bo-client.backurl" content="{{ URL::previous() }}"> |
|
9 |
<meta name="bo-client.docid" content="{{ $docid }}"> |
|
10 |
@endsection |
20
|
11 |
|
28
|
12 |
@section('css-assets') |
|
13 |
<link href="{{ asset('/css/bo-client-vendor.css') }}" rel="stylesheet"> |
|
14 |
<link href="{{ asset('/css/bo-client.css') }}" rel="stylesheet"> |
20
|
15 |
@endsection |
|
16 |
|
|
17 |
@section('js-assets') |
|
18 |
@parent |
|
19 |
<script src="{{ asset('/js/vendor/bo-client-vendor.js') }}"></script> |
|
20 |
<script src="{{ asset('/js/vendor/bo-client.js') }}"></script> |
|
21 |
@endsection |
|
22 |
|
28
|
23 |
@section('nav-bar') |
|
24 |
@parent |
|
25 |
<li><a href="{{ URL::previous() }}">Liste</a></li> |
|
26 |
@endsection |
|
27 |
|
|
28 |
|
20
|
29 |
@section('content') |
|
30 |
<div class="container" id="ember-container"> |
|
31 |
</div> |
|
32 |
@endsection |