The spiritual successor or based.cooking.
URLs have changed! Instead of finding recipes as such: https://foss.cooking/recipe/lithuanian-cold-borscht/ you will now find them like:
https://foss.cooking/recipe/georgii-bondarev/lithuanian-cold-borscht (includes author's name). This is to help when duplicate recipes exist in the future. This may also require you to update your bookmarks! (Your old ones will work for a bit, but will unexpectedly break in the future)
- Go to
src/content/recipes/ - Make a folder that is
your-name. You can also put your recipes inprivateif you wish.- (Optionally) Create a file named
author.jsonin this folder, and put your info there. (Template shown below)
- (Optionally) Create a file named
- Copying this file write your recipe, placing it in this same folder (
your-name)- The author line should match the parent's folder's name.
- Place any pictures in the
webpformat in/public/pix/
author.json Follows the following schema:
// your-name.json
{
"name": "Your Name",
"website_tor": "url | null",
"website": "url | null",
"email": "email | null",
"donate": "url | null",
"xmr": "text | null",
"btc": "text | null",
"eth": "text | null"
}If you want another field just let me know in an issue or PR.
The recipe schema is as follows:
// a-nice-name.md
---
title: "A nice name"
date: YYYY-MM-DD
tags: ["array", "of", "strings"]
author: "Your Name"
---
Your pretty markdown!