b3d379ba3f
Now the extensions admin page will show a logo of the extension instead of an icon. This is both on the manage extensions page and the page of the extension.
19 lines
No EOL
575 B
PHP
19 lines
No EOL
575 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('title')
|
|
Administration
|
|
@endsection
|
|
|
|
@section('content-header')
|
|
<img src="/assets/extensions/blueprint/logo.jpg" alt="logo" style="float:left;width:30px;height:30px;border-radius:3px;margin-right:5px;">
|
|
<h1>Blueprint<small>indev</small></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
<li><a href="{{ route('admin.extensions') }}">Extensions</a></li>
|
|
<li class="active">Blueprint</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<p>placeholder</p>
|
|
@endsection |