@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Deprecated HTML') }}
@if($report['results'][$name]['passed'])
{{ __('There are no deprecated HTML tags on the webpage.') }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'bad_tags') {{ __('The webpage has deprecated HTML tags.') }}
@foreach($details as $key => $value)
<{{ $key }}>
{{ number_format($value, 0, __('.'), __(',')) }}
@endforeach
@endif
@endforeach @endif
{{ __('The deprecated tags represents the tags that are not supported HTML5 standard anymore, and could cause the webpage to be rendered incorrectly.') }}
@endif