-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (50 loc) · 2.21 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
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PrimeVue Frontend Quickstart</title>
<meta name="description"
content="Starter template for a PrimeVue site - without Node or a build step">
<link rel="stylesheet"
href="https://unpkg.com/primevue@3.4.0/resources/themes/bootstrap4-dark-blue/theme.css" />
<link rel="stylesheet" href="https://unpkg.com/primevue@3.4.0/resources/primevue.min.css" />
<link rel="stylesheet" href="https://unpkg.com/primeicons@4.1.0/primeicons.css" />
<link rel="stylesheet" href="assets/css/styles.css">
<script type="importmap">
{
"imports": {
"vue": "https://unpkg.com/vue@3.0.7/dist/vue.esm-browser.js",
"primevue/utils": "https://unpkg.com/primevue@3.4.0/utils/utils.esm.js",
"primevue/ripple": "https://unpkg.com/primevue@3.4.0/ripple/ripple.esm.js",
"primevue/button": "https://unpkg.com/primevue@3.4.0/button/button.esm.js",
"primevue/inputtext": "https://unpkg.com/primevue@3.4.0/inputtext/inputtext.esm.js"
}
}
</script>
<!-- Import Maps polyfill. -->
<script defer src="https://unpkg.com/es-module-shims@0.10.4/dist/es-module-shims.js"></script>
<script type="module" src="assets/js/main.js" defer></script>
</head>
<body>
<header>
<h1>PrimeVue Frontend Quickstart</h1>
<p>
<i>Starter template using PrimeVue on a website's frontend - without Node</i>
</p>
<a href="https://github.com/MichaelCurrin/primevue-frontend-quickstart">
<img src="https://img.shields.io/static/v1?label=MichaelCurrin&message=primevue-frontend-quickstart&color=8dd0ff&logo=github"
alt="MichaelCurrin primevue-frontend-quickstart repo badge"
title="View MichaelCurrin primevue-frontend-quickstart on GitHub" />
</a>
</header>
<br />
<hr />
<br />
<div id="app">
Loading...
</div>
<noscript>Please enable JavaScript or switch to a modern browser version.</noscript>
</body>
</html>