]> BookStack Code Mirror - bookstack/blobdiff - resources/views/base.blade.php
Added locale and text direction to html templates
[bookstack] / resources / views / base.blade.php
index 367a2cd8b9ba69536d985dc85cbf1a14681c7395..971a903401b5a8e2cfbdb38e5d2a8cd39a907a1e 100644 (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>