master
parent
95ff38a492
commit
731c5b2da4
|
@ -206,7 +206,7 @@
|
|||
|
||||
Alle Zulassen
|
||||
</button>
|
||||
<a type="button" class="btn btn-link btn-sm text-light" data-bs-toggle="modal" data-bs-target="#modal-cookie-settings">
|
||||
<a href="#" type="button" class="btn btn-link btn-sm text-light" data-bs-toggle="modal" data-bs-target="#modal-cookie-settings">
|
||||
<svg style="fill: currentColor; width: 18px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 416c0 8.8 7.2 16 16 16l65.6 0c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64L496 432c8.8 0 16-7.2 16-16s-7.2-16-16-16l-257.6 0c-7.4-36.5-39.7-64-78.4-64s-71 27.5-78.4 64L16 400c-8.8 0-16 7.2-16 16zm112 0a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM304 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm48-80c-38.7 0-71 27.5-78.4 64L16 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l257.6 0c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64l65.6 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-65.6 0c-7.4-36.5-39.7-64-78.4-64zM192 144a48 48 0 1 1 0-96 48 48 0 1 1 0 96zm78.4-64C263 43.5 230.7 16 192 16s-71 27.5-78.4 64L16 80C7.2 80 0 87.2 0 96s7.2 16 16 16l97.6 0c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64L496 112c8.8 0 16-7.2 16-16s-7.2-16-16-16L270.4 80z"/></svg>
|
||||
Cookie-Einstelungen
|
||||
</a>
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
<link rel="apple-touch-icon" sizes="180x180" href="{{$favicon['180']}}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{$favicon['32']}}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{$favicon['16']}}">
|
||||
|
||||
|
||||
|
||||
|
||||
@if(Route::currentRouteName() == 'index')
|
||||
<title>{{config('settings.name')}}</title>
|
||||
|
||||
|
@ -54,8 +58,22 @@
|
|||
<meta property="og:image" content="{{$content->image}}">
|
||||
@endif
|
||||
|
||||
@if($content->type->name == "Vaga")
|
||||
<!-- meta tag -->
|
||||
@if($content->type->name == "News")
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "NewsArticle",
|
||||
"headline": "{{ $content->title}}",
|
||||
"image": [
|
||||
"{{ $content->image}}"
|
||||
|
||||
],
|
||||
"datePublished": "{{ $content->creaed_at}}",
|
||||
"dateModified": "{{ $content->updated_at}}"
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
@elseif($content->type->name == "Produto")
|
||||
<!-- meta tag -->
|
||||
@endif
|
||||
|
|
Loading…
Reference in New Issue