document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div itemscope itemtype="http://schema.org/Recipe">We need that div to the left to let Google know that this schema pertains to recipes<div itemprop="description"> The is the description that appears for your recipe, make it short, sweet and keyword related if possible</div>
  2. <h2 itemprop="name">This is the name of the Recipe</h2> - it doesn\'t have to be in a h2 but can help with front end styling
  3. <h3>Ingredients</h3>
  4. <ul>
  5. <li itemprop="ingredients">Ingredient One</li>
  6. <li itemprop="ingredients">Ingredient Two</li>
  7. <li itemprop="ingredients">Ingredient Three</li>
  8. <li itemprop="ingredients">Ingredient Four</li>
  9. </ul>
  10. However many ingredients your recipe contains just list them all above
  11.  
  12. <h3>Your Recipe Name Here - Method</h3>
  13. <div itemprop="recipeInstructions">
  14. <img itemprop="image" src="http://youimagelocation.com/imagetitle.jpg" alt="" width="300" height="590"/>
  15. <ol>
  16. <li>Recipe Instruction One</li>
  17. <li>Recipe Instruction Two</li>
  18. <li>Recipe Instruction Three</li>
  19. <li>Recipe Instruction Four</li>
  20. </ol>
  21. </div>
  22.  
  23. <h3>Recipe Details</h3>
  24. <div>This is where you can add the recipes <span itemprop="author">author name</span>and yield information <span itemprop="recipeYield">4</span> as well as cooking times and reviews!</div><div>
  25.       Prep Time: <time itemprop="prepTime">00:10</time> minutes<br/>
  26.       Cook Time: <time itemprop="cookTime">00:12</time> minutes<br/>
  27.       Ready In: <time itemprop="totalTime">00:22</time> minutes
  28. <span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  29.     <span itemprop="ratingValue">4.5</span> stars based on <span itemprop="reviewCount">12</span> reviews </span> - the reviews show up nicely as stars in the SERPs so make sure to use them.
  30.     </div>
  31. Fin!
  32. </div>
');