|
3 | 3 | <title> |
4 | 4 | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %} |
5 | 5 | </title> |
| 6 | + |
| 7 | +<!-- Open Graph Meta Tags --> |
6 | 8 | <meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> |
7 | | -<meta property="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> |
| 9 | +<meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> |
| 10 | +<meta property="og:type" content="website"> |
| 11 | +<meta property="og:url" content="{{ page.url | absolute_url }}"> |
| 12 | +<meta property="og:locale" content="de_DE"> |
| 13 | +<meta property="og:locale:alternate" content="en_US"> |
| 14 | +<meta property="og:site_name" content="{{ site.title }}"> |
8 | 15 |
|
9 | | -<!-- description --> |
10 | | -<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> |
| 16 | +<!-- Open Graph Image Tags --> |
| 17 | +{% if page.og_image %} |
| 18 | + <meta property="og:image" content="{{ page.og_image | absolute_url }}"> |
| 19 | + <meta property="og:image:width" content="1200"> |
| 20 | + <meta property="og:image:height" content="630"> |
| 21 | + <meta property="og:image:type" content="image/png"> |
| 22 | +{% else %} |
| 23 | + <meta property="og:image" content="{{ '/assets/images/og-image-default.png' | absolute_url }}"> |
| 24 | + <meta property="og:image:width" content="1200"> |
| 25 | + <meta property="og:image:height" content="630"> |
| 26 | + <meta property="og:image:type" content="image/png"> |
| 27 | +{% endif %} |
| 28 | + |
| 29 | +<!-- Twitter Card Meta Tags --> |
| 30 | +<meta name="twitter:card" content="summary_large_image"> |
| 31 | +<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> |
11 | 32 | <meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> |
12 | | -<meta name="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> |
| 33 | +{% if page.og_image %} |
| 34 | + <meta name="twitter:image" content="{{ page.og_image | absolute_url }}"> |
| 35 | +{% else %} |
| 36 | + <meta name="twitter:image" content="{{ '/assets/images/og-image-default.png' | absolute_url }}"> |
| 37 | +{% endif %} |
| 38 | +<meta name="twitter:image:alt" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> |
13 | 39 |
|
14 | | -<meta property="og:type" content="website"> |
15 | | -<meta content="summary_large_image" name="twitter:card"> |
16 | | -<meta content="width=device-width, initial-scale=1" name="viewport"> |
| 40 | +<!-- Standard Meta Tags --> |
| 41 | +<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}"> |
| 42 | +<meta name="viewport" content="width=device-width, initial-scale=1"> |
| 43 | + |
| 44 | +<!-- Favicon & Apple Touch Icon --> |
| 45 | +<link href="/assets/images/favicon.png" rel="shortcut icon" type="image/x-icon"> |
| 46 | +<link href="/assets/images/webclip.jpg" rel="apple-touch-icon"> |
17 | 47 |
|
18 | 48 | <!-- CSS --> |
19 | 49 | <link href="/assets/css/normalize.css" rel="stylesheet" type="text/css"> |
20 | 50 | <link href="/assets/css/webflow.css" rel="stylesheet" type="text/css"> |
21 | 51 | <link href="/assets/css/inog-website.webflow.css" rel="stylesheet" type="text/css"> |
22 | | -<link href="/assets/images/favicon.png" rel="shortcut icon" type="image/x-icon"> |
23 | | -<link href="/assets/images/webclip.jpg" rel="apple-touch-icon"> |
|
0 commit comments