1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Added locale and text direction to html templates

This commit is contained in:
Kostas Dizas
2019-06-11 20:35:31 +01:00
parent 214c09c2b2
commit 86f56dd22b
6 changed files with 18 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html class="@yield('body-class')">
<html lang="{{ config('app.lang') }}" dir="{{ config('app.rtl') ? 'rtl' : 'ltr' }}" class="@yield('body-class')">
<head>
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>