mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Remove double escape of meta tag content
This commit is contained in:
parent
9c92ad1f05
commit
e6bd94855e
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="csrf-token" content="{!! \Rhymix\Framework\Session::getGenericToken() !!}" />
|
||||
@foreach (Context::getMetaTag() as $val)
|
||||
@if ($val['is_before_title'])
|
||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{{ $val['content'] }}" />
|
||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{!! $val['content'] !!}" />
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
<!-- OTHER HEADERS -->
|
||||
@foreach (Context::getMetaTag() as $val)
|
||||
@if (!$val['is_before_title'])
|
||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{{ $val['content'] }}" />
|
||||
<meta http-equiv="{{ $val['name'] }}"|if="$val['is_http_equiv']" name="{{ $val['name'] }}"|if="!$val['is_http_equiv']" content="{!! $val['content'] !!}" />
|
||||
@endif
|
||||
@endforeach
|
||||
@foreach (Context::getOpenGraphData() as $og_metadata)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue