-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div vocab="http://schema.org/" typeof="Event"> | ||
<a property="url" href="nba-miami-philidelphia-game3.html"> | ||
NBA Eastern Conference First Round Playoff Tickets: | ||
<span property="name" | ||
>Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)</span | ||
> | ||
</a> | ||
|
||
<span property="startDate" content="2011-04-21T20:00"> | ||
Thu, 04/21/11 8:00 p.m. | ||
</span> | ||
|
||
<div property="location" typeof="Place"> | ||
<a property="url" href="wells-fargo-center.html"> Wells Fargo Center </a> | ||
<div property="address" typeof="PostalAddress"> | ||
<span property="addressLocality">Philadelphia</span>, | ||
<span property="addressRegion">PA</span> | ||
</div> | ||
</div> | ||
|
||
<div property="offers" typeof="AggregateOffer"> | ||
Priced from: <span property="lowPrice">$35</span> | ||
<span property="offerCount">1,938</span> tickets left | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
@prefix rdfa: <http://www.w3.org/ns/rdfa#> . | ||
@prefix schema: <http://schema.org/> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
|
||
<http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/> | ||
rdfa:usesVocabulary schema: . | ||
_:1 | ||
rdf:type schema:Event; | ||
schema:url <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/nba-miami-philidelphia-game3.html>; | ||
schema:name "Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)"; | ||
schema:startDate "2011-04-21T20:00"; | ||
schema:location _:2; | ||
schema:offers _:4 . | ||
_:2 | ||
rdf:type schema:Place; | ||
schema:url <http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/wells-fargo-center.html>; | ||
schema:address _:3 . | ||
_:3 | ||
rdf:type schema:PostalAddress; | ||
schema:addressLocality "Philadelphia"; | ||
schema:addressRegion "PA" . | ||
_:4 | ||
rdf:type schema:AggregateOffer; | ||
schema:lowPrice "$35"; | ||
schema:offerCount "1,938" . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters