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:
Toby Zerner 2018-12-04 09:47:49 +10:30
parent 2b9e969b95
commit d7fd5ef11e

View File

@ -1,5 +1,6 @@
<!doctype html> <!doctype html>
<html dir="{{ $direction }}" lang="{{ $language }}"> <html @if ($direction) dir="{{ $direction }}" @endif
@if ($language) lang="{{ $language }}" @endif>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ $title }}</title> <title>{{ $title }}</title>