35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="{{ favicon }}" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ title }}</title>
|
|
<meta name="title" content="{{ meta.title }}" />
|
|
<meta name="image" content="{{ meta.image }}" />
|
|
<meta name="description" content="{{ meta.description }}" />
|
|
<meta name="keywords" content="{{ meta.keywords }}" />
|
|
<meta property="og:title" content="{{ meta.title }}" />
|
|
<meta property="og:image" content="{{ meta.image }}" />
|
|
<meta property="og:description" content="{{ meta.description }}" />
|
|
<meta name="twitter:title" content="{{ meta.title }}" />
|
|
<meta name="twitter:image" content="{{ meta.image }}" />
|
|
<meta name="twitter:description" content="{{ meta.description }}" />
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="seo-content">
|
|
<h1>{{ meta.title }}</h1>
|
|
<p>
|
|
{{ meta.description }}
|
|
</p>
|
|
<a href="{{ meta.link }}">Know More</a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
document.getElementById('seo-content').style.display = 'none';
|
|
</script>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|