added initial recipes
This commit is contained in:
45
archetypes/default.md
Normal file
45
archetypes/default.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
draft: true
|
||||
title: "Title for your recipe"
|
||||
author: {{ .Site.Params.front.defaultAuthor | default "User" }}
|
||||
recipe_image: {{ .Site.Params.front.defaultImage | default "images/defaultImage.png" }} #The image for your recipe
|
||||
image_width: {{ .Site.Params.front.defaultImageWidth | default 512 }}
|
||||
image_height: {{ .Site.Params.front.defaultImageHeight | default 512 }}
|
||||
date: {{ .Date }}
|
||||
tags: ["tag1", "tag2"] #tags for your recipe
|
||||
tagline: "A short tagline for your recipe"
|
||||
servings: 4
|
||||
prep_time: 15 #in minutes #can be BLANK
|
||||
cook: true # If we are cooking this, leave true, if we are cooling set to false
|
||||
cook_increment: minutes # set to minutes or hours
|
||||
cook_time: 8 #in minutes or hours #can be BLANK
|
||||
calories: 300 #in kcal #can be BLANK
|
||||
|
||||
# For ingredient subheadings (if you use them), please use the h4 header. For print view I have those elements targeted
|
||||
---
|
||||
|
||||
|
||||
## Ingredients
|
||||
|
||||
#### Ingredient Subheading
|
||||
|
||||
- First Ingredient
|
||||
- Second Ingredient [^1]
|
||||
- Third Ingredient
|
||||
- Fourth Ingredient
|
||||
- Fifth Ingredient
|
||||
|
||||
|
||||
## Directions
|
||||
|
||||
1. Step One
|
||||
1. Sub Step One
|
||||
2. Step Two
|
||||
3. Step Three
|
||||
4. Step Four
|
||||
5. Step Five
|
||||
6. Step Six
|
||||
|
||||
#### Footnotes
|
||||
|
||||
[^1]: Footnote 1
|
Reference in New Issue
Block a user