|
3 | 3 | <meta name="msapplication-TileColor" content="#2d89ef"> |
4 | 4 | <meta name="theme-color" content="#ffffff"> |
5 | 5 | <title>{{ meta.title ?? meta.name ?? app.meta.title }}</title> |
6 | | - <meta name="description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description)|slice(0, 155) }}"/> |
| 6 | + <meta name="description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description) }}"/> |
7 | 7 | <meta property="og:title" content="{{ meta.title ?? app.meta.title }}"/> |
8 | | - <meta property="og:description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description)|slice(0, 120) }}"/> |
| 8 | + <meta property="og:description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description)}}"/> |
9 | 9 | <meta property="og:image" content="{{ meta.image ?? app.meta.image }}"/> |
10 | 10 | <meta property="og:type" content="{{ meta.type ?? app.meta.type }}"/> |
11 | | - <meta property="og:site_name" content="{{ app.meta.siteName }}"/> |
12 | | - <meta property="og:url" content="{{ meta.url ?? (routeName is defined and routeName ? url(routeName) : app.meta.url) }}"/> |
| 11 | + <meta property="og:site_name" content="{{ app.meta.title }}"/> |
| 12 | + <meta property="og:url" content="{{ meta.url ?? (routeName is defined and routeName ? url(routeName) : app.baseUrl) }}"/> |
13 | 13 | <meta property="og:locale" content="{{ app.meta.locale }}"/> |
14 | 14 | <meta name="twitter:card" content="{{ app.meta.twitterCard }}"/> |
15 | 15 | <meta name="twitter:site" content="{{ app.meta.twitterSite }}"/> |
16 | 16 | <meta name="twitter:title" content="{{ meta.title ?? meta.name ?? app.meta.title }}"/> |
17 | | - <meta name="twitter:description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description)|slice(0, 155) }}"/> |
| 17 | + <meta name="twitter:description" content="{{ (meta.description ?? meta.excerpt ?? app.meta.description) }}"/> |
18 | 18 | <meta name="twitter:image" content="{{ meta.image ?? app.meta.image }}"/> |
0 commit comments