This repo contains the source code to build jermowery.github.io / mowery.dev. This uses Hugo with the ananke theme and the hugo-notice theme.
To add a new recipe add a markdown file to content/recipes.
-
The file name must end with
.md
-
At the top of the file you must include front matter, metadata about this recipe.
- Required fields
title
: The name of this recipe, shows as the title of the pagedate
: Today's date. shows in the recipeauthor
: The name of the authordescription
: A one-line description of what this recipe istags
: A list of the tags for this recipe, can be anything but is usually the intended meal like"breakfast"
- Optional fields
images
: A list of relevant images, can be URL or a relative path to a file, see below for more information on adding images
- Example
-
--- title: "Banana Bread (Grandma Lonergan's)" date: 2020-07-18 author: Matt Johnson description: "A cherished family banana bread recipe" tags: [ "bread", "family", "breakfast", "dessert", ] ---
-
- Required fields
-
After this, add the details for the recipe, it is typical to include a section that lists the ingredients in the order they are used and then a section that lists the steps
-
Example
-
## Ingredients * 1 whole lobster * 8 angry bears * $12 in pennies * ... ## Instructions 1. Preheat the oven to 5000 Kelvin 2. In a mixing bowl whisk together the lobster and the bears 3. ...
-
-
Adding an images to your recipe makes the images appear when sharing a link to the recipe.
To add an image do the following:
- Add the image to the images directory at content/recipes/images
- In the front matter of your recipe
.md
file, create animages
field and add a link to your image:--- title: "Banana Bread (Grandma Lonergan's)" date: 2020-07-18 author: Matt Johnson description: "A cherished family banana bread recipe" tags: [ "bread", "family", "breakfast", "dessert", ] + images: [ + "/recipes/images/my_image.webp + ] ---
- (optional) You can set the
featured_image
field to one of your images to have it appear at the top of the page--- title: "Banana Bread (Grandma Lonergan's)" date: 2020-07-18 author: Matt Johnson description: "A cherished family banana bread recipe" tags: [ "bread", "family", "breakfast", "dessert", ] images: [ "/recipes/images/my_image.webp ] + featured_image: "/recipes/images/my_image.webp" ---