]> BookStack Code Mirror - bookstack/blob - resources/views/help/licenses.blade.php
Opensearch: Fixed XML declaration when php short tags enabled
[bookstack] / resources / views / help / licenses.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-l">&nbsp;</div>
8
9         <div class="card content-wrap auto-height">
10
11             <h1 class="list-heading">{{ trans('settings.licenses') }}</h1>
12             <p>{{ trans('settings.licenses_desc') }}</p>
13
14             <ul>
15                 <li><a href="#bookstack-license">{{ trans('settings.licenses_bookstack') }}</a></li>
16                 <li><a href="#php-lib-licenses">{{ trans('settings.licenses_php') }}</a></li>
17                 <li><a href="#js-lib-licenses">{{ trans('settings.licenses_js') }}</a></li>
18                 <li><a href="#other-licenses">{{ trans('settings.licenses_other') }}</a></li>
19             </ul>
20         </div>
21
22         <div id="bookstack-license" class="card content-wrap auto-height">
23             <h3 class="list-heading">{{ trans('settings.licenses_bookstack') }}</h3>
24             <div style="white-space: pre-wrap;" class="mb-m">{{ $license }}</div>
25             <p>BookStack® is a UK registered trade mark of Daniel Brown. </p>
26         </div>
27
28         <div id="php-lib-licenses" class="card content-wrap auto-height">
29             <h3 class="list-heading">{{ trans('settings.licenses_php') }}</h3>
30             <div style="white-space: pre-wrap;">{{ $phpLibData }}</div>
31         </div>
32
33         <div id="js-lib-licenses" class="card content-wrap auto-height">
34             <h3 class="list-heading">{{ trans('settings.licenses_js') }}</h3>
35             <div style="white-space: pre-wrap;">{{ $jsLibData }}</div>
36         </div>
37
38         <div id="other-licenses" class="card content-wrap auto-height">
39             <h3 class="list-heading">{{ trans('settings.licenses_other') }}</h3>
40             <div style="white-space: pre-line;">BookStack makes heavy use of PHP:
41                 License: PHP License, version 3.01
42                 License File: https://www.php.net/license/3_01.txt
43                 Copyright: Copyright (c) 1999 - 2019 The PHP Group. All rights reserved.
44                 Link: https://www.php.net/
45                 -----------
46                 BookStack uses Icons from Google Material Icons:
47                 License: Apache License Version 2.0
48                 License File: https://github.com/google/material-design-icons/blob/master/LICENSE
49                 Copyright: Copyright 2020 Google LLC
50                 Link: https://github.com/google/material-design-icons
51                 -----------
52                 BookStack is distributed with TinyMCE:
53                 License: MIT
54                 License File: https://github.com/tinymce/tinymce/blob/release/6.7/LICENSE.TXT
55                 Copyright: Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc.
56                 Link: https://github.com/tinymce/tinymce
57                 -----------
58                 BookStack's newer WYSIWYG editor is based upon lexical code:
59                 License: MIT
60                 License File: https://github.com/facebook/lexical/blob/v0.17.1/LICENSE
61                 Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
62                 Link: https://github.com/facebook/lexical
63             </div>
64         </div>
65     </div>
66
67 @endsection