forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamp-list.ssr.html
29 lines (26 loc) · 999 Bytes
/
amp-list.ssr.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
<!doctype html>
<html ⚡ allow-viewer-render-template>
<head>
<meta charset="utf-8">
<script async src="https://cdn.ampproject.org/v0.js"></script>
<script async custom-element="amp-bind" src="https://cdn.ampproject.org/v0/amp-bind-0.1.js"></script>
<script async custom-element="amp-list" src="https://cdn.ampproject.org/v0/amp-list-0.1.js"></script>
<script async custom-template="amp-mustache" src="https://cdn.ampproject.org/v0/amp-mustache-0.2.js"></script>
<style amp4email-boilerplate>body{visibility:hidden}</style>
</head>
<body>
<amp-state id="data">
<script type="application/json">
{
"fruit": "Pineapple"
}
</script>
</amp-state>
<amp-list id="amp-list" width="auto" height="100" layout="fixed-height"
max-items="5" src="https://lively-and-awesome.appspot.com/ssr_amp_list/">
<template type="amp-mustache">
<div class="product">{{name}}</div>
</template>
</amp-list>
</body>
</html>