-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (56 loc) · 2.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@jrjurman" />
<meta property="og:title" content="Tram-One" />
<meta
property="og:description"
content="Organization for vanilla javascript libraries that help build UI components and frameworks"
/>
<meta property="og:url" content="https://tram-one.io" />
<meta property="og:image" content="/preview.png" />
<title>Tram One</title>
<link rel="icon" type="image/png" href="favicon.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon64.png" sizes="64x64" />
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" />
<script src="https://unpkg.com/tram-lite@2"></script>
<script src="./main.js"></script>
<style>
body {
font-size: 1.2em;
font-family: 'Poppins';
max-width: 900px;
margin: auto;
}
</style>
</head>
<body>
<page-header
page-title="Tram-One"
description="Organization for vanilla javascript libraries that help build UI components and frameworks"
graphic="https://unpkg.com/@tram-one/tram-logo@4"
href="http://tram-one.io/"
>
<a href="https://github.com/Tram-One/" target="_blank">Tram-One Github Org</a>
</page-header>
<app-grid>
<app-block
app-title="Tram-Deco"
description="Declarative Custom Elements using native Web Component APIs and DSD"
>
<app-link href="https://github.com/Tram-One/tram-deco">Github Repo</app-link>
<app-link href="https://github.com/Tram-One/tram-deco">Documentation</app-link>
</app-block>
<app-block app-title="Tram-Lite" description="Lite DOM and Native Component Library for Vanilla Javascript">
<app-link href="https://github.com/Tram-One/tram-lite">Github Repo</app-link>
<app-link href="https://tram-one.io/tram-lite/">Website</app-link>
</app-block>
<app-block app-title="Tram-One Framework" description="Legacy View Framework for Vanilla Javascript">
<app-link href="https://github.com/Tram-One/tram-one">Github Repo</app-link>
<app-link href="https://github.com/Tram-One/tram-one/blob/master/documentation.md">Documentation</app-link>
</app-block>
</app-grid>
</body>
</html>