-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.html
More file actions
40 lines (36 loc) · 1.72 KB
/
app.html
File metadata and controls
40 lines (36 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en" prefix="og:http://ogp.me/ns#">
<head>
<meta charset="utf-8" />
<title>Greenwood</title>
<meta property="og:title" content="Greenwood" />
<meta
name="description"
content="Greenwood is your workbench for the web, embracing web standards from the ground up to empower your stack from front to back."
/>
<meta name="twitter:site" content="@PrjEvergreen" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.greenwoodjs.dev" />
<meta property="og:image" content="https://www.greenwoodjs.dev/assets/greenwood-logo-og.png" />
<meta
property="og:description"
content="Greenwood is your workbench for the web, embracing web standards from the ground up to empower your stack from front to back."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<script type="module" src="../components/footer/footer.js" data-gwd-opt="static"></script>
<script type="module" src="../components/header/header.js" data-gwd-opt="static"></script>
<script type="module" src="../components/copy-to-clipboard-button/ctc-button.js"></script>
<script type="module" src="../components/copy-to-clipboard-block/ctc-block.js"></script>
<link rel="stylesheet" href="../styles/theme.css" />
</head>
<body>
<app-header current-route="${globalThis.page.route}"></app-header>
<main class="page-content">
<page-outlet></page-outlet>
</main>
<app-footer></app-footer>
</body>
</html>