mirror of
https://github.com/flarum/framework.git
synced 2025-02-06 16:51:02 +08:00
Don't output empty html tag attributes
From https://discuss.flarum.org/d/17817-meta-description-is-empty/8 ref #1677
This commit is contained in:
parent
2b9e969b95
commit
d7fd5ef11e
|
@ -1,5 +1,6 @@
|
|||
<!doctype html>
|
||||
<html dir="{{ $direction }}" lang="{{ $language }}">
|
||||
<html @if ($direction) dir="{{ $direction }}" @endif
|
||||
@if ($language) lang="{{ $language }}" @endif>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ $title }}</title>
|
||||
|
|
Loading…
Reference in New Issue
Block a user