BookStack/resources/views/base.blade.php

93 lines
4.3 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<!DOCTYPE html>
<html>
<head>
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ Setting::get('app-name', 'BookStack') }}</title>
<!-- Meta -->
2015-07-12 19:01:42 +00:00
<meta name="viewport" content="width=device-width">
2015-08-12 22:42:42 +00:00
<meta name="token" content="{{ csrf_token() }}">
2015-10-18 18:40:33 +00:00
<meta charset="utf-8">
<!-- Styles and Fonts -->
<link rel="stylesheet" href="{{ versioned_asset('css/styles.css') }}">
<link rel="stylesheet" media="print" href="{{ versioned_asset('css/print-styles.css') }}">
<link rel="stylesheet" href="/libs/material-design-iconic-font/css/material-design-iconic-font.min.css">
<!-- Scripts -->
<script src="/libs/jquery/jquery.min.js?version=2.1.4"></script>
2015-07-12 20:31:15 +00:00
@yield('head')
2015-07-12 19:01:42 +00:00
</head>
2015-12-29 16:39:25 +00:00
<body class="@yield('body-class')" ng-app="bookStack">
2015-07-12 19:01:42 +00:00
@include('partials/notifications')
2015-08-30 16:53:30 +00:00
<header id="header">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-4" ng-non-bindable>
<a href="/" class="logo">
2015-10-07 22:17:48 +00:00
@if(Setting::get('app-logo', '') !== 'none')
<img class="logo-image" src="{{ Setting::get('app-logo', '') === '' ? '/logo.png' : Setting::get('app-logo', '') }}" alt="Logo">
@endif
<span class="logo-text">{{ Setting::get('app-name', 'BookStack') }}</span>
</a>
2015-08-30 16:53:30 +00:00
</div>
<div class="col-lg-4 col-sm-3 text-center">
<form action="/search/all" method="GET" class="search-box">
<input id="header-search-box-input" type="text" name="term" tabindex="2" value="{{ isset($searchTerm) ? $searchTerm : '' }}">
<button id="header-search-box-button" type="submit" class="text-button"><i class="zmdi zmdi-search"></i></button>
</form>
</div>
<div class="col-lg-4 col-sm-5">
2015-08-31 10:43:28 +00:00
<div class="float right">
<div class="links text-center">
<a href="/books"><i class="zmdi zmdi-book"></i>Books</a>
@if(isset($currentUser) && $currentUser->can('settings-update'))
2015-08-31 10:43:28 +00:00
<a href="/settings"><i class="zmdi zmdi-settings"></i>Settings</a>
@endif
@if(!isset($signedIn) || !$signedIn)
2015-09-04 19:40:36 +00:00
<a href="/login"><i class="zmdi zmdi-sign-in"></i>Sign In</a>
@endif
2015-08-31 10:43:28 +00:00
</div>
@if(isset($signedIn) && $signedIn)
2015-12-30 18:38:18 +00:00
<div class="dropdown-container" dropdown>
<span class="user-name" dropdown-toggle>
<img class="avatar" src="{{$currentUser->getAvatar(30)}}" alt="{{ $currentUser->name }}">
<span class="name" ng-non-bindable>{{ $currentUser->name }}</span> <i class="zmdi zmdi-caret-down"></i>
</span>
<ul>
<li>
2016-02-17 22:11:48 +00:00
<a href="/user/{{$currentUser->id}}" class="text-primary"><i class="zmdi zmdi-account zmdi-hc-fw zmdi-hc-lg"></i>View Profile</a>
</li>
<li>
2016-02-17 22:11:48 +00:00
<a href="/settings/users/{{$currentUser->id}}" class="text-primary"><i class="zmdi zmdi-edit zmdi-hc-fw zmdi-hc-lg"></i>Edit Profile</a>
</li>
<li>
<a href="/logout" class="text-neg"><i class="zmdi zmdi-run zmdi-hc-fw zmdi-hc-lg"></i>Logout</a>
</li>
</ul>
</div>
@endif
2015-08-31 10:43:28 +00:00
2015-08-23 12:41:35 +00:00
</div>
2015-07-16 18:53:24 +00:00
</div>
2015-07-15 21:55:49 +00:00
</div>
2015-07-12 19:01:42 +00:00
</div>
2015-08-30 16:53:30 +00:00
</header>
2015-07-21 21:11:30 +00:00
<section id="content" class="block">
2015-07-12 19:01:42 +00:00
@yield('content')
</section>
<div id="back-to-top">
<div class="inner">
<i class="zmdi zmdi-chevron-up"></i> <span>Back to top</span>
</div>
</div>
2015-07-16 18:15:22 +00:00
@yield('bottom')
<script src="{{ versioned_asset('js/common.js') }}"></script>
@yield('scripts')
2015-07-12 19:01:42 +00:00
</body>
</html>