21 lines
839 B
Twig
21 lines
839 B
Twig
|
{% set title = title|default(config('general.name')) %}
|
||
|
{% set description = description|default(config('general.description')) %}
|
||
|
|
||
|
<title>{{ title }}</title>
|
||
|
<meta name="twitter:title" content="{{ title }}">
|
||
|
<meta property="og:title" content="{{ title }}">
|
||
|
|
||
|
<meta name="description" content="{{ description }}">
|
||
|
<meta name="twitter:description" content="{{ description }}">
|
||
|
<meta property="og:description" content="{{ description }}">
|
||
|
|
||
|
<meta name="twitter:card" content="summary">
|
||
|
|
||
|
<meta property="og:type" content="object">
|
||
|
<meta property="og:site_name" content="{{ config('general.name') }}">
|
||
|
|
||
|
{% if icon is defined %}
|
||
|
<meta name="twitter:image:src" content="{{ icon }}">
|
||
|
<meta property="og:image" content="{{ icon }}">
|
||
|
{% endif %}
|