-
-
Notifications
You must be signed in to change notification settings - Fork 321
/
Copy pathmarkup.sample.html
51 lines (49 loc) · 1.35 KB
/
markup.sample.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
<div id="stories">
<!-- story -->
<div
class="story {{ story.seen ? 'seen' : '' }}"
data-id="{{storyId}}"
data-last-updated="{{story.lastUpdated}}"
data-photo="{{story.photo}}"
>
<a class="item-link" href="{{story.link}}">
<span class="item-preview">
<img src="{{story.photo}}" />
</span>
<span
class="info"
itemProp="author"
itemScope=""
itemType="http://schema.org/Person"
>
<strong class="name" itemProp="name">{{story.name}}</strong>
<span class="time">{{story.lastUpdated}}</span>
</span>
</a>
<ul class="items">
<!-- story item -->
<li
data-id="{{storyItemId}}"
data-time="{{storyItem.time}}"
class="{{storyItem.seen ? 'seen' : '' }}"
>
<a
href="{{storyItem.src}}"
data-type="{{storyItem.type}}"
data-length="{{storyItem.length}}"
data-link="{{storyItem.link}}"
data-linkText="{{storyItem.linkText}}"
data-custom-key="{{storyItem.custom-key}}"
data-another-custom-key="{{storyItem.another-custom-key}}"
>
<img src="{{storyItem.preview}}" />
</a>
</li>
<!--/ story item -->
</ul>
</div>
<!--/ story -->
</div>
<script>
const stories = Zuck(document.querySelector('#stories'));
</script>