0e13905098
* Check for null version from upstream #575 * Fix for pre-release version numbering * Move popup to right * Split get/generate build ID #575
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<div class="sidebar" data-background-color="white" data-active-color="info">
|
|
|
|
<!--
|
|
Tip 1: you can change the color of the sidebar's background using: data-background-color="white | black"
|
|
Tip 2: you can change the color of the active button using the data-active-color="primary | info | success | warning | danger"
|
|
-->
|
|
|
|
|
|
<div class="sidebar-wrapper">
|
|
<div class="logo" style="background: #067ec1; margin: 0px; text-align: center; min-height: 74px;">
|
|
<a href="{{ url('/dashboard') }}">
|
|
<img src="{{ public_asset('/assets/img/logo_blue_bg.svg') }}" width="110px" style="">
|
|
</a>
|
|
</div>
|
|
|
|
<ul class="nav">
|
|
@include('admin.menu')
|
|
</ul>
|
|
|
|
<br/>
|
|
|
|
<div class="row" style="margin-bottom: 20px;">
|
|
<div class="col-xs-12 text-center">
|
|
<a class="small"
|
|
data-container="body"
|
|
data-toggle="popover"
|
|
data-placement="right"
|
|
data-content="{{$version_full}}">
|
|
version {{ $version }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|