Browse Source
Feature/improve meta data in index.html (#5318)
* Improve meta data
* Update changelog
pull/5323/head
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
8 deletions
-
CHANGELOG.md
-
apps/client/src/index.html
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the meta data in `html` files |
|
|
|
- Removed `ts-node` from the database seeding process |
|
|
|
- Improved the language localization for Catalan (`ca`) |
|
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
@ -9,10 +9,7 @@ |
|
|
|
<meta content="${keywords}" name="keywords" /> |
|
|
|
<meta content="yes" name="mobile-web-app-capable" /> |
|
|
|
<meta content="summary_large_image" name="twitter:card" /> |
|
|
|
<meta |
|
|
|
content="Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies" |
|
|
|
name="twitter:description" |
|
|
|
/> |
|
|
|
<meta content="${description}" name="twitter:description" /> |
|
|
|
<meta content="${rootUrl}/${featureGraphicPath}" name="twitter:image" /> |
|
|
|
<meta content="${title}" name="twitter:title" /> |
|
|
|
<meta |
|
|
@ -20,13 +17,14 @@ |
|
|
|
name="viewport" |
|
|
|
/> |
|
|
|
<meta content="#FFFFFF" name="theme-color" /> |
|
|
|
<meta content="" property="og:description" /> |
|
|
|
<meta content="${description}" property="og:description" /> |
|
|
|
<meta content="${rootUrl}/${featureGraphicPath}" property="og:image" /> |
|
|
|
<meta content="${languageCode}" property="og:locale" /> |
|
|
|
<meta content="${title}" property="og:site_name" /> |
|
|
|
<meta content="${title}" property="og:title" /> |
|
|
|
<meta content="website" property="og:type" /> |
|
|
|
<meta content="${rootUrl}${path}" property="og:url" /> |
|
|
|
<meta content="${rootUrl}/${featureGraphicPath}" property="og:image" /> |
|
|
|
<meta content="${currentDate}T00:00:00+00:00" property="og:updated_time" /> |
|
|
|
<meta content="${title}" property="og:site_name" /> |
|
|
|
<meta content="${rootUrl}${path}" property="og:url" /> |
|
|
|
|
|
|
|
<link |
|
|
|
href="../assets/apple-touch-icon.png" |
|
|
|