Skip to content

Instantly share code, notes, and snippets.

@abaumer
Created September 17, 2014 17:48
Show Gist options
  • Save abaumer/b0355e040ca39d88b5a9 to your computer and use it in GitHub Desktop.
Save abaumer/b0355e040ca39d88b5a9 to your computer and use it in GitHub Desktop.
Structured Data
<!--
Microformat Data
enabling better location based search results
-->
<div class="microdata" itemscope itemtype="http://schema.org/Organization">
<!-- Short Name - Hidden Attribute -->
<span itemprop="name" content="ORGANIZATION NAME"/>
<!-- Full name marked as Legal Name -->
<span itemprop="legalName">LONG OFFICIAL ORGANIZATION NAME</span>
<!-- Logo - Hidden Attribute -->
<span itemprop="logo" content="/link/to/logo.png" />
<!-- Office Location #1 -->
<div itemprop="contactPoint" itemscope itemtype="http://schema.org/ContactPoint">
<span itemprop="name" content="LOCATION NAME" />
<span itemprop="telephone" content="PHONE" />
<span itemprop="faxNumber" content="FAX" />
</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">ADDRESS LINE 1</span>,
<span itemprop="addressLocality">CITY</span>,
<span itemprop="addressRegion">STATE</span>
<span itemprop="postalCode">ZIP</span>
</div>
<!-- Office Location #2 -->
<div itemprop="contactPoint" itemscope itemtype="http://schema.org/ContactPoint">
<span itemprop="name" content="LOCATION NAME" />
<span itemprop="telephone" content="PHONE" />
</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">ADDRESS LINE 1</span>,
<span itemprop="addressLocality">CITY</span>,
<span itemprop="addressRegion">STATE</span>
<span itemprop="postalCode">ZIP</span>
</div>
</div>
<!--
END: Microdata
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment