-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.twig
29 lines (29 loc) · 1.26 KB
/
meta.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% if site.meta_default %}
<meta name="description" content="$meta.description $site.description">
<meta name="keywords" content="$meta.keywords">
<meta name="author" content="$meta.author">
<meta name="robots" content="$meta.robots">
{% endif %}
{% if site.meta_facebook %}
<meta property="og:locale" content="$site.meta_locale">
<meta property="og:type" content="website">
<meta property="og:site_name" content="$site.name">
<meta property="article:publisher" content="$site.meta_facebook_url">
<meta property="fb:admins" content="$site.meta_facebook_ids">
<meta property="og:title" content="$meta.title">
<meta property="og:description" content="$meta.description">
<meta property="og:url" content="$meta.url">
{% if meta.image %}
<meta property="og:image" content="$meta.image">
{% endif %}
{% endif %}
{% if site.meta_twitter %}
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="$site.meta_twitter_site" />
<meta name="twitter:title" content="$meta.title" />
<meta name="twitter:description" content="$meta.description" />
<meta name="twitter:url" content="$meta.url" />
{% if meta.image %}
<meta name="twitter:image" content="$meta.image" />
{% endif %}
{% endif %}