Packages
serum_recipes
0.1.0
A plugin for the Serum site generator to loads recipes from schema.org format
Current section
Files
Jump to
Current section
Files
lib/recipe_template.md.eex
---
cook_time: <%= format_duration(cook_time) %>
image: <%= image %>
prep_time: <%= format_duration(prep_time) %>
template: recipe
title: <%= title %>
yield: <%= yield %>
---
<%= description %>
## Ingredients
<%= for ingredient <- ingredients do %>
- <%= ingredient %>
<% end %>
## Directions
<%= for instruction <- instructions do %>
1. <%= instruction["text"] %>
<% end %>