-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.7 KB
/
index.html
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
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://cdn.forge.tylertech.com/favicon.ico" sizes="16x16" type="image/x-icon" />
<link rel="stylesheet" href="https://cdn.forge.tylertech.com/v1/css/tyler-font.css" />
<link rel="stylesheet" href="node_modules/@tylertech/forge/dist/forge-core.css" />
<link rel="stylesheet" href="node_modules/@tylertech/forge/dist/forge.css" />
<title>Tyler Forge™ Extended</title>
<style>
.body {
margin: 0 auto;
padding: var(--forge-spacing-large);
}
.content {
width: 1024px;
}
</style>
</head>
<body>
<forge-scaffold>
<forge-app-bar slot="header" title-text="Tyler Forge™ Extended">
<forge-icon slot="logo" name="forge_logo"></forge-icon>
</forge-app-bar>
<main slot="body" class="body">
<forge-card class="content">
<h1 class="forge-typography--heading4">Demo</h1>
<!-- Set up temporary demo here (DO NOT COMMIT CHANGES TO THIS FILE) -->
</forge-card>
</main>
</forge-scaffold>
<script type="module" src="@tylertech/forge/esm/scaffold"></script>
<script type="module" src="@tylertech/forge/esm/app-bar/app-bar"></script>
<script type="module" src="@tylertech/forge/esm/card/card"></script>
<script type="module" src="@tylertech/forge/esm/icon/icon"></script>
<script type="module">
import { IconRegistry } from '@tylertech/forge';
import { tylIconForgeLogo } from '@tylertech/tyler-icons/custom';
IconRegistry.define([tylIconForgeLogo]);
</script>
</body>
</html>