-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvideo.html
109 lines (104 loc) · 5.18 KB
/
video.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Video - Google Ninja</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111501099-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-111501099-1');
</script>
</head>
<body>
<div itemscope itemtype="http://schema.org/MusicGroup">
<h1 itemprop="name">Foo Fighters</h1>
<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
<h2>Video:
<span itemprop="name">Interview with the Foo Fighters</span>
</h2>
<meta itemprop="duration" content="T1M33S" />
<meta itemprop="thumbnail" content="foo-fighters-interview-thumb.jpg" />
<object ...>
<param ...>
<embed type="application/x-shockwave-flash" ...>
</object>
<span itemprop="description">Catch this exclusive interview with Dave Grohl and the Foo Fighters about
their new album, Rope.</span>
</div>
<h2>Songs</h2>
<div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
<span itemprop="name">Rope</span>
<link itemprop="url" href="foo-fighters-rope.html"> Length:
<meta itemprop="duration" content="PT4M5S">4:05 - 14300 plays
<div itemprop="interactionCount" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/ListenAction" />
<meta itemprop="userInteractionCount" content="14300" />
</div>
<a href="foo-fighters-rope-play.html" itemprop="audio">Play</a>
<a href="foo-fighters-rope-buy.html" itemprop="offers">Buy</a>
From album:
<a href="foo-fighters-wasting-light.html" itemprop="inAlbum">Wasting Light</a>
</div>
<div itemprop="track" itemscope itemtype="http://schema.org/MusicRecording">
<span itemprop="name">Everlong</span>
<link itemprop="url" href="foo-fighters-everlong.html"> Length:
<meta itemprop="duration" content="PT6M33S">6:33 - 11700 plays
<div itemprop="interactionCount" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/ListenAction" />
<meta itemprop="userInteractionCount" content="11700" />
</div>
<a href="foo-fighters-everlong-play.html" itemprop="audio">Play</a>
<a href="foo-fighters-everlong-buy.html" itemprop="offers">Buy</a>
From album:
<a href="foo-fighters-color-and-shape.html" itemprop="inAlbum">The Color And The Shape</a>
</div>
<h2>Upcoming shows</h2>
<div itemprop="event" itemscope itemtype="http://schema.org/Event">
<a href="foo-fighters-may20-fedexforum" itemprop="url">
<span itemprop="name">FedExForum</span>
</a>
<span itemprop="location">Memphis, TN, US</span>
<meta itemprop="startDate" content="2011-05-20">May 20
<a href="ticketmaster.com/foofighters/may20-2011" itemprop="offers">Buy tickets</a>
</div>
<div itemprop="event" itemscope itemtype="http://schema.org/Event">
<a href="foo-fighters-may23-midamericacenter" itemprop="url">
<span itemprop="name">Mid America Center</span>
</a>
<span itemprop="location">Council Bluffs, IA, US</span>
<meta itemprop="startDate" content="2011-05-23">May 23
<a href="ticketmaster.com/foofighters/may23-2011" itemprop="offers">Buy tickets</a>
</div>
<h2>
<a href="foo-fighters-photos">28 Photos</a>
</h2>
<a href="foofighters-1.jpg" itemprop="image">
<img alt="Thumbnail and linked photo of Foo Fighters band" src="foofighters-thumb1.jpg"
/>
</a>
<a href="foofighters-2.jpg" itemprop="image">
<img alt="Thumbnail and linked photo of Foo Fighters band" src="foofighters-thumb2.jpg"
/>
</a>
<a href="foofighters-3.jpg" itemprop="image">
<img alt="Thumbnail and linked photo of Foo Fighters band" src="foofighters-thumb3.jpg"
/>
</a>
<h2>Comments:</h2>
Excited about seeing them in concert next week. -Lawrence , Jan 23 I dig their latest
single. -Mary, Jan 19
<div itemprop="interactionStatistic" itemscope itemtype="http://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="http://schema.org/CommentAction" />
<meta itemprop="userInteractionCount" content="18" />
</div>
Showing 1-2 of 18 comments.
<a href="foofighters-comments">More</a>
</div>
</body>
</html>