-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathdemos.html
More file actions
52 lines (49 loc) · 1.31 KB
/
demos.html
File metadata and controls
52 lines (49 loc) · 1.31 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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en"
dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<meta name="description"
content="PatternFly Elements: A set of community-created web components based on PatternFly design.">
<link href="/brand/logo/svg/pfe-icon-blue.svg"
rel="shortcut icon">
<title>{{ demo.title or (demo.tagName) }} | PatternFly Elements</title>
<link rel="preconnect"
href="https://ga.jspm.io">
<link rel="preconnect"
href="https://fonts.gstatic.com">
<script type="importmap">{{ importMap | dump | safe }}</script>
<link rel="stylesheet"
href="/main.css">
<noscript>
<link href="/core/styles/pf--noscript.min.css"
rel="stylesheet">
</noscript>
<script async
src="https://ga.jspm.io/npm:es-module-shims@2.0.10/dist/es-module-shims.js"></script>
<script type="module">import 'element-internals-polyfill';</script>
<style>
html,
body,
main {
min-height: 100%;
}
</style>
<noscript>
<style>
:not(:defined) {
opacity: 1;
}
</style>
</noscript>
</head>
<body>
<main>
<div data-demo="{{demo.tagName}}">{% if demo.filePath %}
{%- include demo.filePath -%}{% endif %}
</div>
</main>
</body>
</html>