Replace variables (#2229)
This commit is contained in:
parent
6e87f34c6f
commit
5a23cd34ad
@ -1,11 +1,14 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html class="h-100 position-relative" lang="${languageCode}">
|
<html class="h-100 position-relative" lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>${title}</title>
|
<title>Ghostfolio – Open Source Wealth Management Software</title>
|
||||||
<base href="/" />
|
<base href="/" />
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta content="yes" name="apple-mobile-web-app-capable" />
|
<meta content="yes" name="apple-mobile-web-app-capable" />
|
||||||
<meta content="${description}" name="description" />
|
<meta
|
||||||
|
content="Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies across multiple platforms."
|
||||||
|
name="description"
|
||||||
|
/>
|
||||||
<meta
|
<meta
|
||||||
content="app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3"
|
content="app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3"
|
||||||
name="keywords"
|
name="keywords"
|
||||||
@ -16,20 +19,29 @@
|
|||||||
content="Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies"
|
content="Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies"
|
||||||
name="twitter:description"
|
name="twitter:description"
|
||||||
/>
|
/>
|
||||||
<meta content="${rootUrl}/${featureGraphicPath}" name="twitter:image" />
|
<meta content="https://ghostfol.io/assets/cover.png" name="twitter:image" />
|
||||||
<meta content="${title}" name="twitter:title" />
|
<meta
|
||||||
|
content="Ghostfolio – Open Source Wealth Management Software"
|
||||||
|
name="twitter:title"
|
||||||
|
/>
|
||||||
<meta
|
<meta
|
||||||
content="initial-scale=1, viewport-fit=cover, width=device-width"
|
content="initial-scale=1, viewport-fit=cover, width=device-width"
|
||||||
name="viewport"
|
name="viewport"
|
||||||
/>
|
/>
|
||||||
<meta content="#FFFFFF" name="theme-color" />
|
<meta content="#FFFFFF" name="theme-color" />
|
||||||
<meta content="" property="og:description" />
|
<meta content="" property="og:description" />
|
||||||
<meta content="${title}" property="og:title" />
|
<meta
|
||||||
|
content="Ghostfolio – Open Source Wealth Management Software"
|
||||||
|
property="og:title"
|
||||||
|
/>
|
||||||
<meta content="website" property="og:type" />
|
<meta content="website" property="og:type" />
|
||||||
<meta content="${rootUrl}${path}" property="og:url" />
|
<meta content="https://ghostfol.io" property="og:url" />
|
||||||
<meta content="${rootUrl}/${featureGraphicPath}" property="og:image" />
|
<meta content="https://ghostfol.io/assets/cover.png" property="og:image" />
|
||||||
<meta content="${currentDate}T00:00:00+00:00" property="og:updated_time" />
|
<meta content="2023-08-10T00:00:00+00:00" property="og:updated_time" />
|
||||||
<meta content="${title}" property="og:site_name" />
|
<meta
|
||||||
|
content="Ghostfolio – Open Source Wealth Management Software"
|
||||||
|
property="og:site_name"
|
||||||
|
/>
|
||||||
|
|
||||||
<link
|
<link
|
||||||
href="../assets/apple-touch-icon.png"
|
href="../assets/apple-touch-icon.png"
|
||||||
|
63
apps/client/src/index.template.html
Normal file
63
apps/client/src/index.template.html
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html class="h-100 position-relative" lang="${languageCode}">
|
||||||
|
<head>
|
||||||
|
<title>${title}</title>
|
||||||
|
<base href="/" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta content="yes" name="apple-mobile-web-app-capable" />
|
||||||
|
<meta content="${description}" name="description" />
|
||||||
|
<meta
|
||||||
|
content="app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3"
|
||||||
|
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="${rootUrl}/${featureGraphicPath}" name="twitter:image" />
|
||||||
|
<meta content="${title}" name="twitter:title" />
|
||||||
|
<meta
|
||||||
|
content="initial-scale=1, viewport-fit=cover, width=device-width"
|
||||||
|
name="viewport"
|
||||||
|
/>
|
||||||
|
<meta content="#FFFFFF" name="theme-color" />
|
||||||
|
<meta content="" property="og:description" />
|
||||||
|
<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" />
|
||||||
|
|
||||||
|
<link
|
||||||
|
href="../assets/apple-touch-icon.png"
|
||||||
|
rel="apple-touch-icon"
|
||||||
|
sizes="180x180"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../assets/favicon-32x32.png"
|
||||||
|
rel="icon"
|
||||||
|
sizes="32x32"
|
||||||
|
type="image/png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="../assets/favicon-16x16.png"
|
||||||
|
rel="icon"
|
||||||
|
sizes="16x16"
|
||||||
|
type="image/png"
|
||||||
|
/>
|
||||||
|
<link href="../assets/site.webmanifest" rel="manifest" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<gf-root></gf-root>
|
||||||
|
|
||||||
|
<script src="../ionicons/ionicons.esm.js" type="module"></script>
|
||||||
|
<script nomodule="" src="ionicons.js"></script>
|
||||||
|
|
||||||
|
<noscript
|
||||||
|
>Please enable JavaScript to continue using this application.</noscript
|
||||||
|
>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user