Skip to content

Instantly share code, notes, and snippets.

View louisebolden's full-sized avatar

Louise louisebolden

View GitHub Profile
@louisebolden
louisebolden / schema-markup-creativework.html
Last active August 29, 2015 14:15
Schema Markup (CreativeWork)
<div itemtype="http://schema.org/ItemList http://schema.org/CreativeWork">
<h1 itemprop="name">My Latest Article</h1>
Posted on <span itemprop="datePublished" content="2015-02-01T19:30">February 1st, 2015</span>
<div itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name" content="Bob Smith">Bob Smith</span>
<div itemscope itemtype="http://schema.org/Florist">
<span itemprop="name">Local Florist</span>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">100 High Street</span>
<span itemprop="addressRegion">London</span>
<span itemprop="postalCode">W1A 2BC</span>
</div>
@louisebolden
louisebolden / schema-markup-productontology-physiotherapy.html
Created February 17, 2015 10:24
Schema Markup + Productontology (Physiotherapy Service)
<div itemscope itemtype="http://schema.org/Service">
<link itemprop="additionalType" href="http://www.productontology.org/id/Chest_physiotherapy" />
<span itemprop="description">Chest Physiotherapy</span>
</div>
@louisebolden
louisebolden / schema-productontology-physical-therapy-clinic.html
Last active August 29, 2015 14:15
Schema Markup + Productontology (Physical Therapy Clinic)
<div itemscope itemtype="http://schema.org/MedicalClinic">
<link itemprop="additionalType" href="http://www.productontology.org/id/Physical_therapy" />
<span itemprop="name">Physical Therapy Clinic</span>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">100 High Street</span>
<span itemprop="addressRegion">London</span>
<span itemprop="postalCode">W1A 2BC</span>