-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
47 lines (39 loc) · 1.92 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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Webapp Template</title>
<meta name="author" content="Kit Maywood">
<meta name="description" content="A basic structure of a webapp, for faster project creation">
<meta name="twitter:card" content="summary_large_image"></meta>
<meta name="twitter:site" content="@kittsville"></meta>
<meta property="og:title" content="Webapp Template" />
<meta property="og:description" content="A basic structure of a webapp, for faster project creation" />
<!-- <meta property="og:image" content="https://example.com/assets/og-image.png" /> -->
<!-- <meta property="og:image:width" content="1080" />
<meta property="og:image:height" content="565" /> -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://example.com/" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="/assets/material-components-web.min.css" rel="stylesheet">
<link href="/assets/styles.css" rel="stylesheet">
<!-- <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
<link rel="shortcut icon" href="/favicon.ico"> -->
</head>
<body class="mdc-typography">
<main>
<h1 class="mdc-typography mdc-typography--headline1">Webapp Template</h1>
<p>A basic structure of a webapp, for faster project creation</p>
</main>
<footer>
<a href="/privacy">Privacy Policy</a>
<a href="https://github.com/kittsville/webapp-template">Report a Bug</a>
</footer>
<div>
<script src="/assets/material-components-web.min.js"></script>
<script src="/assets/scripts.js"></script>
</div>
</body>
</html>