-
Notifications
You must be signed in to change notification settings - Fork 6
/
demo.html
39 lines (36 loc) · 943 Bytes
/
demo.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>disqus-comments Demo</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="disqus-comments.html">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
<style>
body {
font-family: 'Open Sans', sans-serif;
padding: 40px;
}
h1 {
color: #333;
}
p {
color: #666;
}
disqus-comments {
margin: 20px 0;
}
#disqus_thread p {
color: #333;
}
#disqus_thread a {
color: hotpink;
}
</style>
</head>
<body unresolved>
<h1>disqus-comments</h1>
<p>Show Disqus comments in your Shadow DOM. Just provide a shortname and you're good to go!</p>
<disqus-comments shortname="disqus-comments-polymer"></disqus-comments>
</body>
</html>