diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index fb3b2f8..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,12 +0,0 @@ - diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml deleted file mode 100644 index 785d40c..0000000 --- a/.github/workflows/pr.yaml +++ /dev/null @@ -1,12 +0,0 @@ -on: pull_request - -jobs: - check_files: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Check files for compliance - run: .github/workflows/scripts/check-files.sh - diff --git a/.github/workflows/scripts/check-files.sh b/.github/workflows/scripts/check-files.sh deleted file mode 100755 index 428649b..0000000 --- a/.github/workflows/scripts/check-files.sh +++ /dev/null @@ -1,153 +0,0 @@ -#!/bin/sh -set -eu - -SIZE_LIMIT=150000 -FAIL=0 - -check_size() { - size="$(stat --printf="%s" "$1")" - if [ "$size" -gt "$SIZE_LIMIT" ]; then - echo "File $1 is bigger than specified $SIZE_LIMIT limit" - FAIL=1 - fi -} - -check_file_name() { - fileName="$1" - expectedFolder="$2" - - shouldname="${expectedFolder}/$(basename "$fileName" | - iconv --to-code=utf-8 | - tr '[:upper:]' '[:lower:]' | - tr '_ ' '-')" - - if [ "$shouldname" != "$fileName" ]; then - echo "$1 should be named $shouldname." - FAIL=1 - fi -} - -check_webp_name() { - check_file_name "$1" "data/pix" -} - -check_recipe_name() { - check_file_name "$1" "src" -} - -check_recipe_content() { - errMsgs="$(awk ' - BEGIN { - HAS_TITLE = 0; - HAS_TAGS = 0; - HAS_INVALID_TAGS = 0; - NUM_TAGS = 0; - HAS_INGREDIENTS = 0; - HAS_DIRECTIONS = 0; - HAS_CONSECUTIVE_EMPTY_LINES = 0; - - CONSECUTIVE_EMPTY_LINES = 0; - } - - # First line should be the title - NR == 1 && /^# / { - HAS_TITLE = 1; - next; - } - - $0 == "## Ingredients" { - HAS_INGREDIENTS = 1; - } - - $0 == "## Directions" { - HAS_DIRECTIONS = 1; - } - - $0 == "" { - CONSECUTIVE_EMPTY_LINES++ - if (CONSECUTIVE_EMPTY_LINES >= 2) { - HAS_CONSECUTIVE_EMPTY_LINES = 1; - } - } - - $0 != "" { - CONSECUTIVE_EMPTY_LINES = 0; - } - - END { - # Last line should be the tags list - if ($1 == ";tags:") { - HAS_TAGS = 1; - NUM_TAGS = NF - 1; - - # Loop through all the tags - for (i = 2; i <= NF; i++) { - # Make sure that each tag only contains lowercase letters and hyphens - if ($i !~ "^[a-z-]+$") { - HAS_INVALID_TAGS = 1; - break; - } - } - } - - if (!HAS_TITLE) { - print "Recipe does not have a properly formatted title on the first line." - } - - if (!HAS_TAGS) { - print "Recipe does not have a properly formatted tags on the last line." - } else { - if (HAS_INVALID_TAGS) { - print "Recipe has invalid tags. Tags must be separated by spaces and contain only lowercase letters or hyphens (-)"; - } - - if (NUM_TAGS < 2) { - print "Recipe only has " NUM_TAGS " tags. Add some more." - } else if (NUM_TAGS > 5) { - print "Recipe has " NUM_TAGS " tags which is too many. Remove some tags." - } - } - - if (!HAS_INGREDIENTS) { - print "Recipe does not have an ingredients list." - } - - if (!HAS_DIRECTIONS) { - print "Recipe does not have a directions section." - } - - if (HAS_CONSECUTIVE_EMPTY_LINES) { - print "Recipe has at least 2 consecutive empty lines."; - } - } - ' "$1")" - - if [ -n "$errMsgs" ]; then - echo "$errMsgs" - FAIL=1 - fi -} - -while IFS= read -r file; do - echo "Checking '$file'" - case "$file" in - # Ignore these files - index.md) ;; - .github/*.md) ;; - - *.webp) - check_size "$file" - check_webp_name "$file" - ;; - *.md) - check_recipe_name "$file" - check_recipe_content "$file" - ;; - esac - # Separate each file for easier reading. - echo "" -done </dev/null) -TAGFILES = $(patsubst $(BLOG_SRC)/%.md,tags/%,$(ARTICLES)) - -help: - $(info make init|build|deploy|clean|taglist) - -init: - mkdir -p $(BLOG_SRC) data templates - printf '$$TITLE' > templates/header.html - printf '' > templates/footer.html - printf '' > templates/index_header.html - printf '

Tags:' > templates/tag_list_header.html - printf '$$NAME' > templates/tag_entry.html - printf ', ' > templates/tag_separator.html - printf '

' > templates/tag_list_footer.html - printf '

Articles

' > templates/article_list_footer.html - printf '' > templates/index_footer.html - printf '' > templates/tag_index_header.html - printf '' > templates/tag_index_footer.html - printf '' > templates/article_header.html - printf '' > templates/article_footer.html - printf 'blog\n' > .git/info/exclude - -build: blog/index.html tagpages $(patsubst $(BLOG_SRC)/%.md,blog/%.html,$(ARTICLES)) $(patsubst %,blog/%.xml,$(BLOG_FEEDS)) - -deploy: build - rsync -rLtvz $(BLOG_RSYNC_OPTS) blog/ data/ $(BLOG_REMOTE) - -clean: - rm -rf blog tags - -config: - printf 'BLOG_REMOTE:=%s\n' \ - '$(shell printf "Blog remote (eg: host:/var/www/html): ">/dev/tty; head -n1)' \ - > $@ - -tags/%: $(BLOG_SRC)/%.md - mkdir -p tags - grep -ih '^; *tags:' "$<" | cut -d: -f2- | tr -c '[^a-z\-]' ' ' | sed 's/ */\n/g' | sed '/^$$/d' | sort -u > $@ - -blog/index.html: index.md $(ARTICLES) $(TAGFILES) $(addprefix templates/,$(addsuffix .html,header index_header tag_list_header tag_entry tag_separator tag_list_footer article_list_header article_entry article_separator article_list_footer index_footer footer)) - mkdir -p blog - TITLE="$(BLOG_TITLE)"; \ - PAGE_TITLE="$(BLOG_TITLE)"; \ - export TITLE; \ - export PAGE_TITLE; \ - envsubst < templates/header.html > $@; \ - envsubst < templates/index_header.html >> $@; \ - envsubst < templates/tag_list_header.html >> $@; \ - first=true; \ - for t in $(shell cat $(TAGFILES) | sort -u); do \ - "$$first" || envsubst < templates/tag_separator.html; \ - NAME="$$t" \ - URL="@$$t.html" \ - envsubst < templates/tag_entry.html; \ - first=false; \ - done >> $@; \ - envsubst < templates/tag_list_footer.html >> $@; \ - envsubst < templates/article_list_header.html >> $@; \ - first=true; \ - echo $(ARTICLES); \ - for f in $(ARTICLES); do \ - printf '%s ' "$$f"; \ - git log -n 1 --diff-filter=A --date="format:%s $(BLOG_DATE_FORMAT_INDEX)" --pretty=format:'%ad%n' -- "$$f"; \ - done | sort | cut -d" " -f1,3- | while IFS=" " read -r FILE DATE; do \ - "$$first" || envsubst < templates/article_separator.html; \ - URL="`printf '%s' "\$$FILE" | sed 's,^$(BLOG_SRC)/\(.*\).md,\1,'`.html" \ - DATE="$$DATE" \ - TITLE="`head -n1 "\$$FILE" | sed -e 's/^# //g'`" \ - envsubst < templates/article_entry.html; \ - first=false; \ - done >> $@; \ - envsubst < templates/article_list_footer.html >> $@; \ - markdown < index.md >> $@; \ - envsubst < templates/index_footer.html >> $@; \ - envsubst < templates/footer.html >> $@; \ - - -blog/tag/%.html: $(ARTICLES) $(addprefix templates/,$(addsuffix .html,header tag_header index_entry tag_footer footer)) - -.PHONY: tagpages -tagpages: $(TAGFILES) - +$(BLOG) $(patsubst %,blog/@%.html,$(shell cat $(TAGFILES) | sort -u)) - -blog/@%.html: $(TAGFILES) $(addprefix templates/,$(addsuffix .html,header tag_index_header tag_list_header tag_entry tag_separator tag_list_footer article_list_header article_entry article_separator article_list_footer tag_index_footer footer)) - mkdir -p blog - PAGE_TITLE="Articles tagged $* -- $(BLOG_TITLE)"; \ - TAGS="$*"; \ - TITLE="$(BLOG_TITLE)"; \ - export PAGE_TITLE; \ - export TAGS; \ - export TITLE; \ - envsubst < templates/header.html > $@; \ - envsubst < templates/tag_index_header.html >> $@; \ - envsubst < templates/article_list_header.html >> $@; \ - first=true; \ - for f in $(shell awk '$$0 == "$*" { gsub("tags", "$(BLOG_SRC)", FILENAME); print FILENAME ".md"; nextfile; }' $(TAGFILES)); do \ - printf '%s ' "$$f"; \ - git log -n 1 --diff-filter=A --date="format:%s $(BLOG_DATE_FORMAT_INDEX)" --pretty=format:'%ad%n' -- "$$f"; \ - done | sort | cut -d" " -f1,3- | while IFS=" " read -r FILE DATE; do \ - "$$first" || envsubst < templates/article_separator.html; \ - URL="`printf '%s' "\$$FILE" | sed 's,^$(BLOG_SRC)/\(.*\).md,\1,'`.html" \ - DATE="$$DATE" \ - TITLE="`head -n1 "\$$FILE" | sed -e 's/^# //g'`" \ - envsubst < templates/article_entry.html; \ - first=false; \ - done >> $@; \ - envsubst < templates/article_list_footer.html >> $@; \ - envsubst < templates/tag_index_footer.html >> $@; \ - envsubst < templates/footer.html >> $@; \ - - -blog/%.html: $(BLOG_SRC)/%.md $(addprefix templates/,$(addsuffix .html,header article_header tag_link_header tag_link tag_link_footer article_footer footer)) - mkdir -p blog - TITLE="$(shell head -n1 $< | sed 's/^# \+//')"; \ - export TITLE; \ - PAGE_TITLE="$${TITLE} Recipe -- $(BLOG_TITLE)"; \ - export PAGE_TITLE; \ - AUTHOR="$(shell git log --format="%an" -- "$<" | tail -n 1)"; \ - export AUTHOR; \ - DATE_POSTED="$(shell git log -n 1 --diff-filter=A --date="format:$(BLOG_DATE_FORMAT)" --pretty=format:'%ad' -- "$<")"; \ - export DATE_POSTED; \ - DATE_EDITED="$(shell git log -n 1 --date="format:$(BLOG_DATE_FORMAT)" --pretty=format:'%ad' -- "$<")"; \ - export DATE_EDITED; \ - TAGS="$(shell grep -i '^; *tags:' "$<" | cut -d: -f2- | paste -sd ',')"; \ - export TAGS; \ - envsubst < templates/header.html > $@; \ - envsubst < templates/article_header.html >> $@; \ - sed -e '/^;/d' < $< | markdown -f fencedcode >> $@; \ - envsubst < templates/tag_link_header.html >> $@; \ - for i in $${TAGS} ; do \ - TAG_NAME="$$i" \ - TAG_LINK="./@$$i.html" \ - envsubst < templates/tag_link.html >> $@; \ - done; \ - envsubst < templates/tag_link_footer.html >> $@; \ - envsubst < templates/article_footer.html >> $@; \ - envsubst < templates/footer.html >> $@; \ - -blog/rss.xml: $(ARTICLES) - printf '\n\n\n%s\n%s\n%s\n' \ - "$(BLOG_TITLE)" "$(BLOG_URL_ROOT)" "$(BLOG_DESCRIPTION)" > $@ - for f in $(ARTICLES); do \ - printf '%s ' "$$f"; \ - git log -n 1 --diff-filter=A --date="format:%s %a, %d %b %Y %H:%M:%S %z" --pretty=format:'%ad%n' -- "$$f"; \ - done | sort -k2nr | head -n $(BLOG_FEED_MAX) | cut -d" " -f1,3- | while IFS=" " read -r FILE DATE; do \ - printf '\n%s\n%s\n%s\n%s\n\n\n' \ - "`head -n 1 $$FILE | sed 's/^# //'`" \ - "$(BLOG_URL_ROOT)`basename $$FILE | sed 's/\.md/\.html/'`" \ - "$(BLOG_URL_ROOT)`basename $$FILE | sed 's/\.md/\.html/'`" \ - "$$DATE" \ - "`markdown < $$FILE`"; \ - done >> $@ - printf '\n\n' >> $@ - -blog/atom.xml: $(ARTICLES) - printf '\n\n%s\n%s\n%s\n\n%s\n\n' \ - "$(BLOG_TITLE)" "$(BLOG_DESCRIPTION)" "$(shell date +%Y-%m-%dT%H:%M:%SZ)" "$(BLOG_URL_ROOT)" "$(BLOG_URL_ROOT)atom.xml" "$(BLOG_URL_ROOT)/atom.xml" > $@ - for f in $(ARTICLES); do \ - printf '%s ' "$$f"; \ - git log -n 1 --diff-filter=A --date="format:%s %Y-%m-%dT%H:%M:%SZ" --pretty=format:'%ad %aN%n' -- "$$f"; \ - done | sort -k2nr | head -n $(BLOG_FEED_MAX) | cut -d" " -f1,3- | while IFS=" " read -r FILE DATE AUTHOR; do \ - printf '\n%s\n\n%s\n%s\n%s\n%s\n\n\n' \ - "`head -n 1 $$FILE | sed 's/^# //'`" \ - "$(BLOG_URL_ROOT)`basename $$FILE | sed 's/\.md/\.html/'`" \ - "$(BLOG_URL_ROOT)`basename $$FILE | sed 's/\.md/\.html/'`" \ - "$$DATE" \ - "`git log -n 1 --date="format:%Y-%m-%dT%H:%M:%SZ" --pretty=format:'%ad' -- "$$FILE"`" \ - "$$AUTHOR" \ - "`markdown < $$FILE`"; \ - done >> $@ - printf '\n' >> $@ - -taglist: - grep -RIh '^;tags:' src | cut -d' ' -f2- | tr ' ' '\n' | sort | uniq diff --git a/README.md b/README.md index 8e441e7..b87c18e 100644 --- a/README.md +++ b/README.md @@ -31,35 +31,14 @@ There are no ads, trackers, cookies (unless recipes thereof) or javascript. ### Tags -You can (and should) add tags at the end of your recipe. The syntax is: -``` -;tags: tag1 tag2 tag3 -``` - -The tag line should be a single line, at the end of the markdown file, preceded -by a blank line. - -Add between 1 and 4 tags, **prioritize existing tags**. As a general guideline, -add the country from which the recipe originates if the recipe is representative -of said country, using the adjective form (eg. *mexican*, *italian*, etc). Tag -the main ingredient if it's something slightly special. - -List of special, categorical tags to use if relevant: -- `basic`: for basic recipes that aren't meant to be stand alone but are supposed - to be incorporated in another recipe. -- `breakfast` -- `dessert` -- `quick`: for recipes that can be cooked in under ~20 minutes. -- `side`: side dishes such as mash, fries, etc. -- `snack` -- `spread` +Remember to add tags to your recipe, but try to use tags already used by other recipes. If your recipe contains no meat or dairy, include the `fasting` tag. If it includes dairy but no milk, incude the `cheesefare` tag. ### Images -Images are stored in `data/pix`. +Images are stored in `/pix`. Each recipe can have a title image at the top and perhaps several instructional images as absolutely necessary. @@ -74,17 +53,6 @@ If you submit an image for say, `chicken-parmesan.md`, it should be added as `pi If you would like to add additional directional images, they should be numbered with two digits like: `pix/chicken-parmesan-01.webp`, etc. -## About the site - -The front page, for now, will just be a list of recipes automatically generated -from the content of `src`. -As more articles are added, the site will be reorganized, categorized -or will implement server-side scripting or searches. -This is not necessary yet though. - -I don't really want images of recipes on the mainpage yet. -I'll think about how best to do it to minimize bandwidth if possible. - ## License This website and all its content is in the public domain. diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config b/config deleted file mode 100644 index 8f06a8e..0000000 --- a/config +++ /dev/null @@ -1,6 +0,0 @@ -BLOG_TITLE:=Based Cooking -BLOG_REMOTE:=/var/www/based.cooking -BLOG_DATE_FORMAT_INDEX:=%F -BLOG_DATE_FORMAT:=%F -BLOG_SRC:=src -BLOG_URL_ROOT:=https://based.cooking/ diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..f5f4f7a --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +baseURL = 'https://based.cooking/' +languageCode = 'en-us' +title = 'Based Cooking' +theme = 'lugo' diff --git a/src/aelplermagronen.md b/content/aelplermagronen.md similarity index 91% rename from src/aelplermagronen.md rename to content/aelplermagronen.md index 49028a3..eaca654 100644 --- a/src/aelplermagronen.md +++ b/content/aelplermagronen.md @@ -1,6 +1,10 @@ -# Älplermagronen (Alpine macaroni) +--- +title: "Älplermagronen (Alpine macaroni)" +date: 2021-03-11 +tags: ['swiss', 'pork', 'potato'] +--- -![Älplermagronen](pix/aelplermagronen.webp) +![Älplermagronen](/pix/aelplermagronen.webp) A swiss favorite, _Älplermagronen_ combines pretty much everything you have at your disposal in your alpine chalet. It's the definition of comfort food for the Swiss. @@ -36,5 +40,3 @@ Feel free to vary these amounts, it's not like this is anything strict. ## Contributors - **Alexander Bocken** -- [contact](mailto:alexander@bocken.org) - -;tags: swiss pork potato diff --git a/src/aglio-e-olio.md b/content/aglio-e-olio.md similarity index 93% rename from src/aglio-e-olio.md rename to content/aglio-e-olio.md index fd3c9d2..566fa71 100644 --- a/src/aglio-e-olio.md +++ b/content/aglio-e-olio.md @@ -1,4 +1,8 @@ -# Spaghetti aglio e olio +--- +title: "Spaghetti aglio e olio" +date: 2021-03-21 +tags: ['italian', 'pasta'] +--- Aglio e olio, pasta with garlic and olive oil, is one of the simplest yet greatest pasta dishes of all time. It's quick, easy, and uses a lot of basic pantry ingredients which makes this a convenient weeknight meal. @@ -26,5 +30,3 @@ Aglio e olio, pasta with garlic and olive oil, is one of the simplest yet greate ## Contribution - Robert [github](https://github.com/robert5800) - -;tags: italian pasta diff --git a/src/aljotta.md b/content/aljotta.md similarity index 96% rename from src/aljotta.md rename to content/aljotta.md index 5efd0e5..4a005c8 100644 --- a/src/aljotta.md +++ b/content/aljotta.md @@ -1,4 +1,8 @@ -# Aljotta +--- +title: "Aljotta" +date: 2021-03-16 +tags: ['fish', 'soup', 'mediterranean'] +--- Aljotta ("jo" as in "Yo!") is a light fish soup with roots in french bouillabaisse and similarly refers to the method of serving the fish that are cooked in it. The most appropriate fish to use for both the stock and the accompanying meal are 'clean' white fish that don't turn the broth cloudy, ideally stargazers, monkfish, red gurnard, and moray eels but also hake, mullets, cod and haddock. There are a some variants; restaurant versions could very well include lemon juice and shellfish which I don't associate with aljotta. Rice eventually became a staple with it and how much you put in is up to you. I recommend just a little. In fact, there are no ingredient amounts; the picture should give you an idea of the density you're going for. **Fresh herbs are a must**. @@ -31,5 +35,3 @@ Aljotta ("jo" as in "Yo!") is a light fish soup with roots in french bouillabais ## Contribution Shou, [website](https://shouganai.xyz) - -;tags: fish soup mediterranean diff --git a/src/almeirim-stone-soup.md b/content/almeirim-stone-soup.md similarity index 96% rename from src/almeirim-stone-soup.md rename to content/almeirim-stone-soup.md index ec5aca1..68940bf 100644 --- a/src/almeirim-stone-soup.md +++ b/content/almeirim-stone-soup.md @@ -1,4 +1,8 @@ -# Almeirim Stone Soup +--- +title: "Almeirim Stone Soup" +date: 2021-03-10 +tags: ['portuguese', 'soup', 'pork'] +--- It is truly emblematic of Portuguese cuisine, as it uses all of the ingredients available in order to waste no food. @@ -33,5 +37,3 @@ ## Contribution - Artur Mancha -- [Pleroma](https://pleroma.pt/@lisbonjoker) - -;tags: portuguese soup pork diff --git a/src/apple-pie.md b/content/apple-pie.md similarity index 92% rename from src/apple-pie.md rename to content/apple-pie.md index dfdfad1..d06247d 100644 --- a/src/apple-pie.md +++ b/content/apple-pie.md @@ -1,6 +1,10 @@ -# Apple Pie +--- +title: "Apple Pie" +date: 2021-05-13 +tags: ['dessert', 'pie', 'sweet', 'apples'] +--- -![Apple Pie](pix/apple-pie.webp) +![Apple Pie](/pix/apple-pie.webp) - ⏲️ Prep time: 30 min - 🍳Cook time: 45 min @@ -15,7 +19,7 @@ - 50 g white sugar - 65 g brown sugar - 5 g (1 tsp) cinnamon -- 1-2 g nutmeg +- 1-2 g nutmeg - 15 g cornstarch - 15 g ice water - 226 g (2 sticks) cold butter, cut into slices @@ -46,7 +50,7 @@ 9. Put the bottom half dough into the pie pan and cut off the excess dough with a knife 10. Dump the sauce pan full of the filling into the pie pan and even it out 11. Cover the pie filling with the top dough and fold over and tuck in the excess crust -12. Use a fork or your fingers to pinch down the top crust to the bottom crust so you don't have air gaps +12. Use a fork or your fingers to pinch down the top crust to the bottom crust so you don't have air gaps 13. Optionally you can now brush on the egg wash to make the crust get a shiny golden brown color when it cooks 14. Cut a few slits in the top crust with a knife to give it a nice design and allow for air to release 15. Bake 45 minutes at 350°F or until the crust is brown to your liking and the apples are bubbling inside @@ -54,5 +58,3 @@ ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: dessert pie sweet apples \ No newline at end of file diff --git a/src/apple-strudel.md b/content/apple-strudel.md similarity index 81% rename from src/apple-strudel.md rename to content/apple-strudel.md index 955b26d..02978ee 100644 --- a/src/apple-strudel.md +++ b/content/apple-strudel.md @@ -1,6 +1,10 @@ -# Apple strudel +--- +title: "Apple strudel" +date: 2021-03-22 +tags: ['dessert', 'breakfast'] +--- -![apple-strudel-1](pix/apple-strudel-1.webp) +![apple-strudel-1](/pix/apple-strudel-1.webp) - ⏲️ Prep time: 10 min - 🍳 Cook time: 40 min @@ -24,7 +28,7 @@ 4. Arrange the apple slices over the jam. 5. Sprinkle with cinnamon and breadcrumbs. 6. Cut tiny pieces of butter and arrange them over the apple slices. -![apple-strudel-2](pix/apple-strudel-2.webp) +![apple-strudel-2](/pix/apple-strudel-2.webp) 7. Roll the puff pastry edges over, overlapping them. 8. Bake for around 40 minutes at 180°C (360° F). 9. Cover with powdered sugar. @@ -32,5 +36,3 @@ ## Contribution - Lorenzo Iuri - -;tags: dessert breakfast diff --git a/src/arroz-chaufa.md b/content/arroz-chaufa.md similarity index 83% rename from src/arroz-chaufa.md rename to content/arroz-chaufa.md index 3beeeae..07f343d 100644 --- a/src/arroz-chaufa.md +++ b/content/arroz-chaufa.md @@ -1,8 +1,12 @@ -# Arroz Chaufa +--- +title: "Arroz Chaufa" +date: 2021-03-16 +tags: ['peruvian', 'chinese', 'rice'] +--- Peruvian-chinese dish. Easy to cook just add and mix everything. -![Arroz Chaufa](pix/arroz-chaufa-2.webp) +![Arroz Chaufa](/pix/arroz-chaufa-2.webp) - ⏲️ Prep time: 40 min - 🍳 Cook time: 10 min @@ -18,7 +22,7 @@ Peruvian-chinese dish. Easy to cook just add and mix everything. - Soy Sauce - Welsh Onion -![Ingredients](pix/arroz-chaufa-1.webp) +![Ingredients](/pix/arroz-chaufa-1.webp) ## Directions @@ -33,5 +37,3 @@ Peruvian-chinese dish. Easy to cook just add and mix everything. ## Contribution - Andy Rufasto - [contact](mailto:andy@andyrufasto.cf), [GPG](https://keyoxide.org/0A3D7C5B8C2499A8BEBCE72869D2E5C413569DA2) - -;tags: peruvian chinese rice diff --git a/src/asian-style-chicken-sticky-sauce.md b/content/asian-style-chicken-sticky-sauce.md similarity index 89% rename from src/asian-style-chicken-sticky-sauce.md rename to content/asian-style-chicken-sticky-sauce.md index 9a8cdb6..67035cd 100644 --- a/src/asian-style-chicken-sticky-sauce.md +++ b/content/asian-style-chicken-sticky-sauce.md @@ -1,8 +1,12 @@ -# Asian Style Chicken with Sticky Sauce +--- +title: "Asian Style Chicken with Sticky Sauce" +date: 2021-03-23 +tags: ['asian', 'chicken'] +--- Asian style crispy coated chicken with sweetish sauce recipe. Served with boiled rice. -![Asian Style Chicken with Sticky Sauce](pix/asian-style-chicken-sticky-sauce.webp) +![Asian Style Chicken with Sticky Sauce](/pix/asian-style-chicken-sticky-sauce.webp) ## Ingredients @@ -42,5 +46,3 @@ Asian style crispy coated chicken with sweetish sauce recipe. Served with boiled ## Contribution - pazu - xmr: 48QiCovstDPbHtMR5DP8tp3fUgguVUcdUX2pjbh6utt88fMe5h233ZnY7PxxdQYCjrVuCBQA2D8JBYU7rH2MdVDHFKd7QJi - btc: 17FWEWrKuock7eeZY3DTne7LgES1uKYZK5 - -;tags: asian chicken diff --git a/src/assam-tea.md b/content/assam-tea.md similarity index 83% rename from src/assam-tea.md rename to content/assam-tea.md index ae0090c..e8c506c 100644 --- a/src/assam-tea.md +++ b/content/assam-tea.md @@ -1,6 +1,10 @@ -# Assam Tea +--- +title: "Assam Tea" +date: 2021-03-21 +tags: ['drink', 'quick'] +--- -![Assam Tea](pix/assam-tea.webp) +![Assam Tea](/pix/assam-tea.webp) This is a simple Assam tea recipe. @@ -25,5 +29,3 @@ This is a simple Assam tea recipe. ## Contribution - Chandra Kiran - [GitHub](https://github.com/ackr-8) - -;tags: drink quick diff --git a/src/aussie-snags.md b/content/aussie-snags.md similarity index 88% rename from src/aussie-snags.md rename to content/aussie-snags.md index 0083bf9..080aa61 100644 --- a/src/aussie-snags.md +++ b/content/aussie-snags.md @@ -1,4 +1,8 @@ -# Aussie Snags (sausage sizzle) +--- +title: "Aussie Snags (sausage sizzle)" +date: 2021-06-05 +tags: ['basic', 'snack', 'australian', 'pork'] +--- An Australian BBQ classic tradition that is simple and very easy to make. Great for parties and outdoor events especially national events. Sometimes served at hardware chains. @@ -27,5 +31,3 @@ especially national events. Sometimes served at hardware chains. 5. When the onions are golden brown turn off the hotplate 6. When the sausages are cooked, butter the bread, then the onions, and add a sausage (optionally split) 7. Finally tomato sauce on top - -;tags: basic snack australian pork diff --git a/src/babas-feta-pasta.md b/content/babas-feta-pasta.md similarity index 96% rename from src/babas-feta-pasta.md rename to content/babas-feta-pasta.md index 7df1b37..146ebd3 100644 --- a/src/babas-feta-pasta.md +++ b/content/babas-feta-pasta.md @@ -1,4 +1,8 @@ -# Baba's Feta Pasta +--- +title: "Baba's Feta Pasta" +date: 2021-03-21 +tags: ['greek', 'feta', 'pasta', 'supper'] +--- Greek Pasta Recipe with sauce made out of feta, stock, cream cheese and other ingredients. Uses mixed spice for special flavour, and is a great dinner or mid-day meal. @@ -44,5 +48,3 @@ Make sure to prepare & chop most ingredients before you start. - peepopoggers - [github](https://github.com/peepopoggers) - Original recipe. - -;tags: greek feta pasta supper diff --git a/src/baked-mostaccioli.md b/content/baked-mostaccioli.md similarity index 80% rename from src/baked-mostaccioli.md rename to content/baked-mostaccioli.md index 3d7d236..9355189 100644 --- a/src/baked-mostaccioli.md +++ b/content/baked-mostaccioli.md @@ -1,6 +1,10 @@ -# Baked Mostaccioli +--- +title: "Baked Mostaccioli" +date: 2021-03-21 +tags: ['pasta', 'italian'] +--- -![baked mostaccioli in bowl](pix/baked-mostaccioli-00.webp "Baked Mostaccioli in Bowl") +![baked mostaccioli in bowl](/pix/baked-mostaccioli-00.webp "Baked Mostaccioli in Bowl") Baked pasta cooked in dish with spicy sauce @@ -24,11 +28,9 @@ Baked pasta cooked in dish with spicy sauce 4. Bake at 350°F / 175°C for 20 minutes - Or 375°F / 190°C for 15 minutes on convection bake. -![baked mostaccioli on stove](pix/baked-mostaccioli-01.webp "Baked Mostaccioli right out of the Oven") +![baked mostaccioli on stove](/pix/baked-mostaccioli-01.webp "Baked Mostaccioli right out of the Oven") ## Contributors - Recipe created by Dan - Refined & Uploaded by Zyansheep. - -;tags: pasta italian diff --git a/src/baked-pasta-with-broccoli.md b/content/baked-pasta-with-broccoli.md similarity index 81% rename from src/baked-pasta-with-broccoli.md rename to content/baked-pasta-with-broccoli.md index b1ea8c4..fe296de 100644 --- a/src/baked-pasta-with-broccoli.md +++ b/content/baked-pasta-with-broccoli.md @@ -1,6 +1,10 @@ -# Baked pasta with broccoli, boiled eggs and scamorza cheese +--- +title: "Baked pasta with broccoli, boiled eggs and scamorza cheese" +date: 2021-04-15 +tags: ['italian', 'pasta', 'broccoli', 'cheesefare'] +--- -![baked-pasta-with-broccoli](pix/baked-pasta-with-broccoli.webp) +![baked-pasta-with-broccoli](/pix/baked-pasta-with-broccoli.webp) - ⏲️ Prep time: 15 min - 🍳 Cook time: 20~30 min @@ -33,5 +37,3 @@ Davide Costa - [website](davcloud.xyz), Monero: `4BD4REH2QyC5dhb7W4hYUnD3poGgpg9TGVrn1iRcdkQzBrm44eAre1GcfvsPakPF1thy2CBcBqZmzCLRsU6gZftY1Bg23f9` - -;tags: italian pasta broccoli cheesefare diff --git a/src/baked-salmon.md b/content/baked-salmon.md similarity index 89% rename from src/baked-salmon.md rename to content/baked-salmon.md index 50c8598..541ade4 100644 --- a/src/baked-salmon.md +++ b/content/baked-salmon.md @@ -1,4 +1,8 @@ -# Baked Salmon +--- +title: "Baked Salmon" +date: 2021-03-17 +tags: ['basic', 'fish'] +--- Simple method for making a good serving of salmon. Goes well with just about anything. @@ -24,5 +28,3 @@ Simple method for making a good serving of salmon. Goes well with just about any ## Contribution - Carl Zimmerman -- [website](https://codingwithcarl.com) - -;tags: basic fish diff --git a/src/banana-bread.md b/content/banana-bread.md similarity index 91% rename from src/banana-bread.md rename to content/banana-bread.md index d477e01..2ebc123 100644 --- a/src/banana-bread.md +++ b/content/banana-bread.md @@ -1,4 +1,8 @@ -# Banana Bread +--- +title: "Banana Bread" +date: 2021-03-11 +tags: ['bread', 'dessert', 'sweet', 'fasting'] +--- Not too sweet. Great for when you have friends over for tea. @@ -33,5 +37,3 @@ Not too sweet. Great for when you have friends over for tea. ## Contribution - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - -;tags: bread dessert sweet fasting diff --git a/src/banana-muffins-with-chocolate.md b/content/banana-muffins-with-chocolate.md similarity index 84% rename from src/banana-muffins-with-chocolate.md rename to content/banana-muffins-with-chocolate.md index aea4fa5..7f6339e 100644 --- a/src/banana-muffins-with-chocolate.md +++ b/content/banana-muffins-with-chocolate.md @@ -1,6 +1,10 @@ -# Banana Muffins with Chocolate +--- +title: "Banana Muffins with Chocolate" +date: 2021-03-12 +tags: ['dessert', 'sweet', 'snack', 'cake', 'fasting'] +--- -![banana-muffins](pix/banana-muffins.webp) +![banana-muffins](/pix/banana-muffins.webp) - ⏲️ Prep time: 15 min - 🍳 Cook time: 30 min @@ -29,5 +33,3 @@ ## Contribution - Łukasz Drukała - [website](https://masflam.com), [donate](https://masflam.com/#donate) - -;tags: dessert sweet snack cake fasting diff --git a/src/banana-pancakes.md b/content/banana-pancakes.md similarity index 89% rename from src/banana-pancakes.md rename to content/banana-pancakes.md index 544ead9..d2e9e84 100644 --- a/src/banana-pancakes.md +++ b/content/banana-pancakes.md @@ -1,4 +1,8 @@ -# Banana Pancakes +--- +title: "Banana Pancakes" +date: 2021-03-13 +tags: ['breakfast', 'quick', 'sweet', 'pancake', 'cheesefare'] +--- - ⏲️ Prep time: 10 minutes - 🍳 Cook time: 10 minutes @@ -26,5 +30,3 @@ Either eat the pancakes as they get ready or put a plate in a preheated oven (lo ## Contribution - Ricky Lindén - [website](https://rickylinden.com), [donate](https://rickylinden.com/donate.html) - -;tags: breakfast quick sweet pancake cheesefare diff --git a/src/basic-meatballs.md b/content/basic-meatballs.md similarity index 95% rename from src/basic-meatballs.md rename to content/basic-meatballs.md index e990282..e2674b9 100644 --- a/src/basic-meatballs.md +++ b/content/basic-meatballs.md @@ -1,4 +1,8 @@ -# Basic Meatballs +--- +title: "Basic Meatballs" +date: 2021-03-25 +tags: ['basic', 'italian', 'beef', 'pork'] +--- Hybrid beef/pork meatballs perfect for spaghetti and meatballs or a meatball sub. - 🍳 Cook time: 25 min @@ -38,5 +42,3 @@ Hybrid beef/pork meatballs perfect for spaghetti and meatballs or a meatball sub ## Contribution - John Hubberts - [github](https://github.com/jhubberts) - -;tags: basic italian beef pork diff --git a/src/beef-goulash.md b/content/beef-goulash.md similarity index 93% rename from src/beef-goulash.md rename to content/beef-goulash.md index 5a84cfa..fe6191d 100644 --- a/src/beef-goulash.md +++ b/content/beef-goulash.md @@ -1,6 +1,10 @@ -# Beef Goulash +--- +title: "Beef Goulash" +date: 2021-03-12 +tags: ['hungarian', 'beef', 'stew'] +--- -![Beef Goulash](pix/beef-goulash.webp) +![Beef Goulash](/pix/beef-goulash.webp) Although it takes some time to make, it is actually quite easy to make, and it is a really hearty and delicious recipe, if I do say so myself. @@ -53,5 +57,3 @@ Originally published at [https://www.yaroslavps.com/food/beef-goulash/](https:// - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: hungarian beef stew diff --git a/src/beef-jerky.md b/content/beef-jerky.md similarity index 95% rename from src/beef-jerky.md rename to content/beef-jerky.md index 22ce332..6bc7d51 100644 --- a/src/beef-jerky.md +++ b/content/beef-jerky.md @@ -1,4 +1,8 @@ -# Beef Jerky +--- +title: "Beef Jerky" +date: 2021-03-11 +tags: ['beef', 'snack'] +--- Beef Jerky is ideal for road trips and camping, as it will not perish as readily as fresh meat. It is suitable not only as a snack but also as a meal. @@ -31,5 +35,3 @@ Other meats may be substituted instead of beef, but use caution. ## Contribution - Elias Howell -- [website](https://snarf.top) - -;tags: beef snack diff --git a/src/beef-kidney.md b/content/beef-kidney.md similarity index 90% rename from src/beef-kidney.md rename to content/beef-kidney.md index 48b37e3..e12960e 100644 --- a/src/beef-kidney.md +++ b/content/beef-kidney.md @@ -1,4 +1,8 @@ -# Beef Kidney +--- +title: "Beef Kidney" +date: 2021-06-05 +tags: ['kidney', 'beef'] +--- My wife's beef kidney recipe @@ -9,7 +13,7 @@ My wife's beef kidney recipe ## Ingredients - 1 beef kidney -- 60g butter +- 60g butter - 2 onions - 2 shallots - 1 sprig of fresh parsley @@ -32,5 +36,3 @@ My wife's beef kidney recipe ## Contribution Philip Wittamore - [Website](https://wittamore.com) - -;tags: kidney beef diff --git a/src/beef-stew.md b/content/beef-stew.md similarity index 95% rename from src/beef-stew.md rename to content/beef-stew.md index adb9990..a986b1e 100644 --- a/src/beef-stew.md +++ b/content/beef-stew.md @@ -1,4 +1,8 @@ -# Traditional beef or lamb stew +--- +title: "Traditional beef or lamb stew" +date: 2021-03-10 +tags: ['irish', 'stew', 'lamb', 'beef'] +--- This is a recipe for a typical Irish stew. This is traditionally made with lamb since it's cheaper however, beef tastes a lot better and is more readily available in North America I've been told. This is good if you want to feed a family or if you just want to be lazy and eat the same thing for 2 or 3 days. Besides browning the meat this is really just throwing stuff into a pot in a certain order. This is the kind of dish that tastes better the next day so it's ideal for making on a Sunday and eating for the next 2 or 3 days. @@ -24,5 +28,3 @@ Serve with mashed potatoes. ## Contribution - Eoin Coogan - [website](https://eoincoogan.com), [youtube](https://www.youtube.com/channel/UCehh50T6qtDpt_kEUF33GJw) - -;tags: irish stew lamb beef diff --git a/src/beef-tips.md b/content/beef-tips.md similarity index 96% rename from src/beef-tips.md rename to content/beef-tips.md index 58a278b..c34c34c 100644 --- a/src/beef-tips.md +++ b/content/beef-tips.md @@ -1,4 +1,8 @@ -# Beef Tips in Gravy on Sour Cream Mashed Potatoes +--- +title: "Beef Tips in Gravy on Sour Cream Mashed Potatoes" +date: 2021-03-11 +tags: ['american', 'beef', 'potato'] +--- Tender chunks of meat in a rich brown gravy poured over sour cream mashed potatoes, made in a pressure cooker. This recipe is a modification of the [Texas Cafe Classics Sirloin Tips Recipe](https://youtu.be/91gAm1hBaT4) by Mark Rippetoe. @@ -47,5 +51,3 @@ Tender chunks of meat in a rich brown gravy poured over sour cream mashed potato - **Batu Cam** -- Transcribed recipe from Mark Rippetoe's video with moderate to significant modifications based on experience -- Monero (XMR) to help me save for an unazoomer cabin: `85eZ4uVd4gkiCsQEeDnsQG9pUbDzdi1r1VSJ9hK5Sx7hKsFZjvmqtWV7gU1ysWUR32jhWutBRGUUq8VAJNUfin9wBCCuTdg` - **Mark Rippetoe** -- Original recipe author, creator of starting strength, and pink nationalist -- [Website](https://startingstrength.com) - -;tags: american beef potato diff --git a/src/belgian-pear-syrup.md b/content/belgian-pear-syrup.md similarity index 95% rename from src/belgian-pear-syrup.md rename to content/belgian-pear-syrup.md index eaab594..fcc1b08 100644 --- a/src/belgian-pear-syrup.md +++ b/content/belgian-pear-syrup.md @@ -1,4 +1,8 @@ -# Belgian pear syrup +--- +title: "Belgian pear syrup" +date: 2021-03-21 +tags: ['syrup', 'fruit', 'belgian'] +--- A delicious syrup that can be eaten on bread and used in a multitude of recipes. @@ -33,5 +37,3 @@ A delicious syrup that can be eaten on bread and used in a multitude of recipes. ## Contribution - Yiusa, eth `0x68f1317c6512f0267fa711cafb6c134ae968fa80` - -;tags: syrup fruit belgian diff --git a/src/bloody-mary-mix.md b/content/bloody-mary-mix.md similarity index 86% rename from src/bloody-mary-mix.md rename to content/bloody-mary-mix.md index 7b7f7e5..c9c7a68 100644 --- a/src/bloody-mary-mix.md +++ b/content/bloody-mary-mix.md @@ -1,4 +1,9 @@ -# Bloody Mary Mix +--- +title: "Bloody Mary Mix" +date: 2022-04-14 +date: 2021-03-19 +tags: ['drink', 'sweet', 'breakfast'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 5 min @@ -22,5 +27,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: drink sweet breakfast \ No newline at end of file diff --git a/src/bolinhos-de-coco.md b/content/bolinhos-de-coco.md similarity index 86% rename from src/bolinhos-de-coco.md rename to content/bolinhos-de-coco.md index 0549475..f0b6b9d 100644 --- a/src/bolinhos-de-coco.md +++ b/content/bolinhos-de-coco.md @@ -1,4 +1,8 @@ -# Bolinhos de Coco +--- +title: "Bolinhos de Coco" +date: 2021-03-16 +tags: ['portuguese', 'quick', 'sweet', 'dessert', 'cheesefare'] +--- This is a Portuguese dish that translates to "coconut cupcakes," though there are probably lots of equivalent dishes from other cultures. Its simplicity and short preparation time make it perfect for a snack or dessert. @@ -26,5 +30,3 @@ Its simplicity and short preparation time make it perfect for a snack or dessert - A family recipe (not mine) - Submitted by Mealwhiles - -;tags: portuguese quick sweet dessert cheesefare diff --git a/src/bolo-do-caco.md b/content/bolo-do-caco.md similarity index 94% rename from src/bolo-do-caco.md rename to content/bolo-do-caco.md index ef09f05..75384b6 100644 --- a/src/bolo-do-caco.md +++ b/content/bolo-do-caco.md @@ -1,4 +1,8 @@ -# Bolo do Caco (Caco Bread) +--- +title: "Bolo do Caco (Caco Bread)" +date: 2021-03-23 +tags: ['bread', 'portuguese'] +--- _A traditional Madeiran-Portuguese Bread_ @@ -44,5 +48,3 @@ __Metric__ ## Contribution - João Freitas - [website](https://joaoofreitas.tech), [github](https://github.com/joaoofreitas) - -;tags: bread portuguese diff --git a/src/bolognese-sauce.md b/content/bolognese-sauce.md similarity index 95% rename from src/bolognese-sauce.md rename to content/bolognese-sauce.md index dfaa4cc..5c66a25 100644 --- a/src/bolognese-sauce.md +++ b/content/bolognese-sauce.md @@ -1,6 +1,10 @@ -# Bolognese Sauce +--- +title: "Bolognese Sauce" +date: 2021-03-23 +tags: ['sauce', 'italian', 'pasta'] +--- -![Bolognese sauce](pix/bolognese-sauce-1.webp) +![Bolognese sauce](/pix/bolognese-sauce-1.webp) Basic bolognese sauce for lasagne or pasta dishes @@ -47,5 +51,3 @@ stir it through until it has completely evaporated. (If you are using it you can - Yiusa, eth `0x68f1317c6512f0267fa711cafb6c134ae968fa80` - Tait, [website](https://tait.tech) - -;tags: sauce italian pasta diff --git a/src/bread.md b/content/bread.md similarity index 97% rename from src/bread.md rename to content/bread.md index 85dd924..6a7975f 100644 --- a/src/bread.md +++ b/content/bread.md @@ -1,4 +1,8 @@ -# Basic Bread Recipe +--- +title: "Basic Bread Recipe" +date: 2021-03-10 +tags: ['basic', 'bread', 'fasting'] +--- This is a recipe for a basic loaf of bread. The dough itself can be used however. I've made buns, rolls, and whole bread loafs using this same exact dough every time without a problem. Eat within 3 days as it will probably be going stale around then (as bread without preservatives and other junk should). @@ -35,5 +39,3 @@ This is a recipe for a basic loaf of bread. The dough itself can be used however ## Contribution Alex Selimov - [Website](https://alexselimov.xyz) - -;tags: basic bread fasting diff --git a/src/breakfast-wrap.md b/content/breakfast-wrap.md similarity index 90% rename from src/breakfast-wrap.md rename to content/breakfast-wrap.md index 455f66f..5bec3fa 100644 --- a/src/breakfast-wrap.md +++ b/content/breakfast-wrap.md @@ -1,4 +1,8 @@ -# Breakfast Wrap +--- +title: "Breakfast Wrap" +date: 2021-03-21 +tags: ['breakfast', 'quick', 'basic', 'eggs'] +--- The basic parts of a full English in a wrap. Inspired by McDonald's breakfast wraps. @@ -26,5 +30,3 @@ The basic parts of a full English in a wrap. Inspired by McDonald's breakfast wr ## Contribution - Linux Lounge - -;tags: breakfast quick basic eggs diff --git a/src/breton-crepes.md b/content/breton-crepes.md similarity index 87% rename from src/breton-crepes.md rename to content/breton-crepes.md index 5c810cd..b49f895 100644 --- a/src/breton-crepes.md +++ b/content/breton-crepes.md @@ -1,4 +1,8 @@ -# Breton Crêpes (Breton Galettes) +--- +title: "Breton Crêpes (Breton Galettes)" +date: 2021-03-14 +tags: ['french', 'cheesefare'] +--- Buckwheat crêpes eaten as dishes, traditionally garnished with ham, eggs and cheese (galette complète). ~15/20 galettes. @@ -23,5 +27,3 @@ It will then be easier to spread the dough. - Aeredren - [GitHub](https://github.com/Aeredren) - Tait Hoyen - [website](https://tait.tech) - -;tags: french cheesefare diff --git a/src/brigadeiro.md b/content/brigadeiro.md similarity index 91% rename from src/brigadeiro.md rename to content/brigadeiro.md index 141a904..2779170 100644 --- a/src/brigadeiro.md +++ b/content/brigadeiro.md @@ -1,4 +1,8 @@ -# Brigadeiro +--- +title: "Brigadeiro" +date: 2021-03-16 +tags: ['dessert', 'quick', 'brazilian', 'cheesefare'] +--- A very traditional Brazilian dessert that is present in every Brazilian birthday party! Delicious and super easy to make. @@ -24,5 +28,3 @@ Depending on how much brigadeiro you want to make, you'll have to add more or le - https://github.com/cabinetto - https://github.com/actuallyexeon - https://github.com/daniel-zimmer - -;tags: dessert quick brazilian cheesefare diff --git a/src/broiled-trevally.md b/content/broiled-trevally.md similarity index 92% rename from src/broiled-trevally.md rename to content/broiled-trevally.md index e4a17c4..130f544 100644 --- a/src/broiled-trevally.md +++ b/content/broiled-trevally.md @@ -1,4 +1,8 @@ -# Broiled Trevally +--- +title: "Broiled Trevally" +date: 2021-03-10 +tags: ['fish', 'cheesefare'] +--- Well, it's actually a *giant* trevally, and if you have seen one, that fish looks ugly. So here's a recipe to make it look---and taste!---more appealing. @@ -30,5 +34,3 @@ So here's a recipe to make it look---and taste!---more appealing. ## Contribution - O.Q. Olarte [website](https://oqolarte.github.io), [donate](https://oqolarte.github.io/support) - -;tags: fish cheesefare diff --git a/src/brown-sauce.md b/content/brown-sauce.md similarity index 91% rename from src/brown-sauce.md rename to content/brown-sauce.md index 321c536..420d88b 100644 --- a/src/brown-sauce.md +++ b/content/brown-sauce.md @@ -1,4 +1,8 @@ -# Brown Sauce +--- +title: "Brown Sauce" +date: 2021-03-23 +tags: ['sauce'] +--- A very basic sauce that can be used for various dishes. @@ -27,5 +31,3 @@ A very basic sauce that can be used for various dishes. ## Contribution - Vili Kangas - -;tags: sauce diff --git a/src/burger-dressing.md b/content/burger-dressing.md similarity index 75% rename from src/burger-dressing.md rename to content/burger-dressing.md index 636eaf3..0eeb251 100644 --- a/src/burger-dressing.md +++ b/content/burger-dressing.md @@ -1,6 +1,10 @@ -# Hamburger dressing +--- +title: "Hamburger dressing" +date: 2021-04-06 +tags: ['sauce', 'basic', 'aioli', 'dressing'] +--- -![burger-dressing](pix/burger-dressing.webp) +![burger-dressing](/pix/burger-dressing.webp) A delicious home made hamburger dressing 🍔 @@ -21,5 +25,3 @@ A delicious home made hamburger dressing 🍔 ## Contribution - brox - xmr: `8AaUvC4JPfTVgy66FLd8mVfsPwT7RXJuPK2xySoKnFEhDZPNafpgn6rh8VPBVauyNP17EQQ1HGhMCZdtUJNoD7xnVt1cSLo` - -;tags: sauce basic aioli dressing diff --git a/src/butter-chicken-masala.md b/content/butter-chicken-masala.md similarity index 91% rename from src/butter-chicken-masala.md rename to content/butter-chicken-masala.md index b9d93eb..498e8f1 100644 --- a/src/butter-chicken-masala.md +++ b/content/butter-chicken-masala.md @@ -1,6 +1,10 @@ -# Butter Chicken Masala Curry +--- +title: "Butter Chicken Masala Curry" +date: 2021-03-15 +tags: ['indian', 'curry', 'chicken'] +--- -![Butter Chicken Masala](pix/butter-chicken-masala.webp) +![Butter Chicken Masala](/pix/butter-chicken-masala.webp) Butter chicken Masala is one of India's most popular chicken recipes, a mild curry with a tomato-onion-cream base and boneless chicken pieces cooked in it to perfection. @@ -38,5 +42,3 @@ Butter chicken Masala is one of India's most popular chicken recipes, a mild cur ## Contribution - Nihar Samantaray - [website](https://nihars.com), [contact](mailto:i@nihars.com) - -;tags: indian curry chicken diff --git a/src/cacio-e-pepe.md b/content/cacio-e-pepe.md similarity index 92% rename from src/cacio-e-pepe.md rename to content/cacio-e-pepe.md index 2fe42dc..edb9adb 100644 --- a/src/cacio-e-pepe.md +++ b/content/cacio-e-pepe.md @@ -1,6 +1,10 @@ -# Cacio e Pepe +--- +title: "Cacio e Pepe" +date: 2021-03-11 +tags: ['italian', 'quick', 'pasta', 'cheesefare'] +--- -![pepe](pix/cacio-e-pepe.webp) +![pepe](/pix/cacio-e-pepe.webp) Cacio e Pepe (meaning cheese and pepper) is not only based but also incredibly simple, ideal for lazy neets and similarly minded people who don't want to wash too many dishes and don't like complicated recipes with too many extra ingredients. @@ -28,5 +32,3 @@ Cacio e Pepe (meaning cheese and pepper) is not only based but also incredibly s - Batu Cam -- Added picture -- XMR: `85eZ4uVd4gkiCsQEeDnsQG9pUbDzdi1r1VSJ9hK5Sx7hKsFZjvmqtWV7gU1ysWUR32jhWutBRGUUq8VAJNUfin9wBCCuTdg` - [S0NN1](https://github.com/S0NN1) -- fixed the recipe based on the original italian one -- [website](https://nicolosonnino.it) - mathik - -;tags: italian quick pasta cheesefare diff --git a/src/caesar-salad.md b/content/caesar-salad.md similarity index 81% rename from src/caesar-salad.md rename to content/caesar-salad.md index 4deda9a..28c96ee 100644 --- a/src/caesar-salad.md +++ b/content/caesar-salad.md @@ -1,6 +1,10 @@ -# Caesar Salad +--- +title: "Caesar Salad" +date: 2021-03-11 +tags: ['italian', 'salad', 'cheesefare'] +--- -![caesar_salad](pix/csalad.webp) +![caesar_salad](/pix/csalad.webp) Caesar Salad is an easy and delicious meal for lunch or dinner. @@ -22,5 +26,3 @@ Caesar Salad is an easy and delicious meal for lunch or dinner. ## Contributors - gucko - -;tags: italian salad cheesefare diff --git a/src/cannellini-bean-salad.md b/content/cannellini-bean-salad.md similarity index 88% rename from src/cannellini-bean-salad.md rename to content/cannellini-bean-salad.md index f33f1e4..7b943a6 100644 --- a/src/cannellini-bean-salad.md +++ b/content/cannellini-bean-salad.md @@ -1,4 +1,8 @@ -# Cannellini Bean Salad +--- +title: "Cannellini Bean Salad" +date: 2021-03-17 +tags: ['beans', 'italian', 'salad'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 10 min @@ -26,5 +30,3 @@ ## Contribution - Carl Zimmerman -- [website](https://codingwithcarl.com) - -;tags: beans italian salad diff --git a/src/carbonade.md b/content/carbonade.md similarity index 92% rename from src/carbonade.md rename to content/carbonade.md index 548aaaa..4e00499 100644 --- a/src/carbonade.md +++ b/content/carbonade.md @@ -1,4 +1,8 @@ -# Carbonade Flamande (Traditional Flemish beef stew) +--- +title: "Carbonade Flamande (Traditional Flemish beef stew)" +date: 2021-03-10 +tags: ['flemish', 'stew', 'beef'] +--- This one is a delicious slow cooked beef stewed in beer. The smoked bacon is not in the traditional recipe but it's good. Don't add it if you want the real deal. @@ -39,5 +43,3 @@ The smoked bacon is not in the traditional recipe but it's good. Don't add it if ## Contribution - anon btc: `1FJSSps89rEMtYm8Vvkp2uyTX9MFpZtcGy` - -;tags: flemish stew beef diff --git a/src/carbonara.md b/content/carbonara.md similarity index 93% rename from src/carbonara.md rename to content/carbonara.md index 293e68e..53dd941 100644 --- a/src/carbonara.md +++ b/content/carbonara.md @@ -1,6 +1,10 @@ -# Carbonara +--- +title: "Carbonara" +date: 2021-03-11 +tags: ['italian', 'pasta', 'quick', 'cheesefare'] +--- -![carbonara](pix/carbonara.webp) +![carbonara](/pix/carbonara.webp) Carbonara is a simple dish. The quality of your ingredients make or break it. I recommend using the best ingredients you can source. @@ -31,5 +35,3 @@ This recipe assumes medium eggs. ## Contribution Peter Piontek, Ladislao Blanchi - -;tags: italian pasta quick cheesefare diff --git a/src/challah-bread.md b/content/challah-bread.md similarity index 95% rename from src/challah-bread.md rename to content/challah-bread.md index 2effba2..e9bdf34 100644 --- a/src/challah-bread.md +++ b/content/challah-bread.md @@ -1,4 +1,8 @@ -# Challah Bread +--- +title: "Challah Bread" +date: 2021-04-15 +tags: ['israeli', 'bread'] +--- A kind of braided bread preparation. @@ -37,5 +41,3 @@ NOTE: Prep time does not account for the 3-4 hours the dough must be left to ris ## Contribution - siggines - [website](http://jacobsiggins.co.uk) - -;tags: israeli bread diff --git a/src/cheesy-meatballs.md b/content/cheesy-meatballs.md similarity index 92% rename from src/cheesy-meatballs.md rename to content/cheesy-meatballs.md index 71edf60..29a1bbf 100644 --- a/src/cheesy-meatballs.md +++ b/content/cheesy-meatballs.md @@ -1,6 +1,10 @@ -# Cheesy Meatballs with Tomato Sauce +--- +title: "Cheesy Meatballs with Tomato Sauce" +date: 2021-03-12 +tags: ['beef', 'cheese'] +--- -![Cheesy Meatballs with Tomato Sauce](pix/cheesy-meatballs.webp) +![Cheesy Meatballs with Tomato Sauce](/pix/cheesy-meatballs.webp) Nothing beats meat, cheese and tomato combined together to create the best combination of flavors that man has created. @@ -58,5 +62,3 @@ Originally published at [https://www.yaroslavps.com/food/cheesy-meatballs/](http - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: beef cheese diff --git a/src/cheesy-pasta-bake.md b/content/cheesy-pasta-bake.md similarity index 92% rename from src/cheesy-pasta-bake.md rename to content/cheesy-pasta-bake.md index d2ad1aa..2bcf545 100644 --- a/src/cheesy-pasta-bake.md +++ b/content/cheesy-pasta-bake.md @@ -1,4 +1,8 @@ -# Cheesy Pasta Bake +--- +title: "Cheesy Pasta Bake" +date: 2021-03-21 +tags: ['bacon', 'cheese', 'italian', 'pasta'] +--- - ⏲️ Prep time: 15 min - 🍳 Cook time: 1 hr @@ -32,5 +36,3 @@ ## Contribution - TechieDamien - [website](https://techiedamien.xyz) - -;tags: bacon cheese italian pasta diff --git a/src/cheesy-potatoe-bake.md b/content/cheesy-potatoe-bake.md similarity index 93% rename from src/cheesy-potatoe-bake.md rename to content/cheesy-potatoe-bake.md index 2672e52..7588991 100644 --- a/src/cheesy-potatoe-bake.md +++ b/content/cheesy-potatoe-bake.md @@ -1,4 +1,8 @@ -# Cheesy Potato Bake +--- +title: "Cheesy Potato Bake" +date: 2021-03-21 +tags: ['american', 'cheese', 'potato'] +--- Potatoes baked in a dish smothered with cheese, what's not to love? @@ -43,5 +47,3 @@ Potatoes baked in a dish smothered with cheese, what's not to love? - Originally published at [https://www.taste.com.au/recipes/cheesy-potato-bake/9749dafb-5288-4066-aa45-d9c99025b975](https://www.taste.com.au/recipes/cheesy-potato-bake/9749dafb-5288-4066-aa45-d9c99025b975) - Kyle Johnson and Sabina Mortensen -- [website](https://www.kylecjohnson.site/) - -;tags: american cheese potato diff --git a/src/chicharrones.md b/content/chicharrones.md similarity index 93% rename from src/chicharrones.md rename to content/chicharrones.md index d9f2a07..718bfaf 100644 --- a/src/chicharrones.md +++ b/content/chicharrones.md @@ -1,4 +1,8 @@ -# Chicharrones +--- +title: "Chicharrones" +date: 2021-03-20 +tags: ['mexican', 'pork'] +--- ## Ingredients - Pork Butt with fat @@ -26,5 +30,3 @@ ## Contribution - Abuela's Cooking - -;tags: mexican pork diff --git a/src/chicken-biscuit-potpie.md b/content/chicken-biscuit-potpie.md similarity index 88% rename from src/chicken-biscuit-potpie.md rename to content/chicken-biscuit-potpie.md index a9d0a56..35cf300 100644 --- a/src/chicken-biscuit-potpie.md +++ b/content/chicken-biscuit-potpie.md @@ -1,4 +1,8 @@ -# Chicken Biscuit Potpie Recipe +--- +title: "Chicken Biscuit Potpie Recipe" +date: 2021-03-11 +tags: ['chicken', 'milk'] +--- ## Ingredients @@ -18,5 +22,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: chicken milk diff --git a/src/chicken-in-red-wine-vinegar-sauce.md b/content/chicken-in-red-wine-vinegar-sauce.md similarity index 92% rename from src/chicken-in-red-wine-vinegar-sauce.md rename to content/chicken-in-red-wine-vinegar-sauce.md index a8e195c..85d8432 100644 --- a/src/chicken-in-red-wine-vinegar-sauce.md +++ b/content/chicken-in-red-wine-vinegar-sauce.md @@ -1,4 +1,8 @@ -# Chicken in Red Wine Vinegar Sauce +--- +title: "Chicken in Red Wine Vinegar Sauce" +date: 2021-03-16 +tags: ['chicken', 'french', 'wine'] +--- - ⏲️ Prep time: 15 min - 🍳 Cook time: 25 min @@ -25,5 +29,3 @@ ## Contribution - Anonymous - -;tags: chicken french wine diff --git a/src/chicken-parmesan.md b/content/chicken-parmesan.md similarity index 95% rename from src/chicken-parmesan.md rename to content/chicken-parmesan.md index 3643326..bcd106e 100644 --- a/src/chicken-parmesan.md +++ b/content/chicken-parmesan.md @@ -1,4 +1,8 @@ -# Chicken Parmesan +--- +title: "Chicken Parmesan" +date: 2021-03-10 +tags: ['italian', 'chicken'] +--- The recipe that started this very site. @@ -38,5 +42,3 @@ I recommend keeping the breasts separate and only adding the sauce when served. ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: italian chicken diff --git a/src/chicken-pasta-casserole.md b/content/chicken-pasta-casserole.md similarity index 86% rename from src/chicken-pasta-casserole.md rename to content/chicken-pasta-casserole.md index fd36d8c..ce6a387 100644 --- a/src/chicken-pasta-casserole.md +++ b/content/chicken-pasta-casserole.md @@ -1,6 +1,10 @@ -# Chicken Pasta Casserole +--- +title: "Chicken Pasta Casserole" +date: 2021-03-12 +tags: ['chicken', 'italian', 'pasta'] +--- -![Chicken Pasta Casserole](pix/chicken-pasta-casserole.webp) +![Chicken Pasta Casserole](/pix/chicken-pasta-casserole.webp) Easy to throw together and transport for the working fellow. High in protein! @@ -30,5 +34,3 @@ Easy to throw together and transport for the working fellow. High in protein! ## Contribution - Miika Nissi - [website](https://miikanissi.com) - -;tags: chicken italian pasta diff --git a/src/chicken-soup.md b/content/chicken-soup.md similarity index 92% rename from src/chicken-soup.md rename to content/chicken-soup.md index 5f38325..8f813e5 100644 --- a/src/chicken-soup.md +++ b/content/chicken-soup.md @@ -1,4 +1,8 @@ -# Chicken Soup +--- +title: "Chicken Soup" +date: 2021-03-16 +tags: ['chicken', 'soup'] +--- Hearty soup that is adaptable to customizing to your desired vegetables or other additions @@ -26,5 +30,3 @@ Hearty soup that is adaptable to customizing to your desired vegetables or other ## Contribution - AJ XMR: `45kYSzfMbY79HeuFoJC2sSGwoXCkty7X6F8nD7rNMkmuZvsDwoAnxDk3B1bT4rK2Je6z9cvKoxxGqS7aUbzvQajzEcK8nfQ` - -;tags: chicken soup diff --git a/src/chicken-stock-bone-broth.md b/content/chicken-stock-bone-broth.md similarity index 94% rename from src/chicken-stock-bone-broth.md rename to content/chicken-stock-bone-broth.md index 7962f6d..cc8136e 100644 --- a/src/chicken-stock-bone-broth.md +++ b/content/chicken-stock-bone-broth.md @@ -1,4 +1,8 @@ -# Chicken Stock or Bone Broth +--- +title: "Chicken Stock or Bone Broth" +date: 2021-03-10 +tags: ['chicken', 'stock', 'basic'] +--- Chicken stock, or "bone broth" is not a final dish in itself, but is used in many soups and other dishes to add great taste to something otherwise very simple. While it is easy to make, it sells for very expensive in the store, so it's a good thing to know to make by yourself since it can be done very cheaply. @@ -31,5 +35,3 @@ You may eat or compost the remaining vegetables. ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: chicken stock basic diff --git a/src/chicken-tacos.md b/content/chicken-tacos.md similarity index 91% rename from src/chicken-tacos.md rename to content/chicken-tacos.md index 31e6e2d..ec947c5 100644 --- a/src/chicken-tacos.md +++ b/content/chicken-tacos.md @@ -1,4 +1,8 @@ -# Slow-cooked Chicken Tacos +--- +title: "Slow-cooked Chicken Tacos" +date: 2021-03-10 +tags: ['mexican', 'chicken', 'slowcooked'] +--- ## Ingredients @@ -26,5 +30,3 @@ ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: mexican chicken slowcooked diff --git a/src/chicken-tenders-airfried.md b/content/chicken-tenders-airfried.md similarity index 94% rename from src/chicken-tenders-airfried.md rename to content/chicken-tenders-airfried.md index 9adc1a9..c71a71a 100644 --- a/src/chicken-tenders-airfried.md +++ b/content/chicken-tenders-airfried.md @@ -1,4 +1,8 @@ -# Chicken Tenders Airfried +--- +title: "Chicken Tenders Airfried" +date: 2021-05-08 +tags: ['chicken', 'fry'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 20 min @@ -33,5 +37,3 @@ Any changes I made were to abide by rule #4. - Mental Outlaw - [youtube](https://www.youtube.com/user/MentalOutlawStudios), xmr: `45F2bNHVcRzXVBsvZ5giyvKGAgm6LFhMsjUUVPTEtdgJJ5SNyxzSNUmFSBR5qCCWLpjiUjYMkmZoX9b3cChNjvxR7kvh436` - Yoshiguy35 - [youtube](https://www.youtube.com/channel/UCWX13rdnpFNeMh7gOhexnlg), [website](https://www.yoshiguy35.com/) - -;tags: chicken fry diff --git a/src/chicken-tomato-spinach-curry.md b/content/chicken-tomato-spinach-curry.md similarity index 94% rename from src/chicken-tomato-spinach-curry.md rename to content/chicken-tomato-spinach-curry.md index a89309f..aaedaac 100644 --- a/src/chicken-tomato-spinach-curry.md +++ b/content/chicken-tomato-spinach-curry.md @@ -1,4 +1,8 @@ -# Chicken, Tomato and Spinach Curry +--- +title: "Chicken, Tomato and Spinach Curry" +date: 2021-03-10 +tags: ['curry', 'chicken'] +--- This dish is a very simple and tasty curry that can be made with minimal ingredients, but pairs amazingly with anything else one may want in a curry (i.e. ginger, lemongrass). Note: You may also need a blender / food processor. @@ -26,5 +30,3 @@ Note: You may also need a blender / food processor. ## Contribution - Luke Goule - [GitHub](https://github.com/LukeGoule), [XMR Donation QR](https://ergine.cc/xmr.png) - -;tags: curry chicken diff --git a/src/chicken-wings.md b/content/chicken-wings.md similarity index 89% rename from src/chicken-wings.md rename to content/chicken-wings.md index a0438e5..b8d4442 100644 --- a/src/chicken-wings.md +++ b/content/chicken-wings.md @@ -1,4 +1,8 @@ -# Chicken Wings +--- +title: "Chicken Wings" +date: 2021-03-10 +tags: ['chicken', 'american'] +--- Perfectly cooked fall off the bone buffalo wings. @@ -23,5 +27,3 @@ Perfectly cooked fall off the bone buffalo wings. ## Contributors - **Kyle Steger** -- [GitHub](https://github.com/kyleVsteger) -- _just some dude_ - -;tags: chicken american diff --git a/src/chili-con-carne.md b/content/chili-con-carne.md similarity index 92% rename from src/chili-con-carne.md rename to content/chili-con-carne.md index 9aaf81e..a637ec5 100644 --- a/src/chili-con-carne.md +++ b/content/chili-con-carne.md @@ -1,4 +1,8 @@ -# Chili Con Carne +--- +title: "Chili Con Carne" +date: 2021-03-11 +tags: ['mexican', 'beef', 'beans'] +--- ## Ingredients @@ -35,5 +39,3 @@ ## Contribution - Aaron Taylor -- [website](https://atay.me) - -;tags: mexican beef beans diff --git a/src/chimichanga.md b/content/chimichanga.md similarity index 93% rename from src/chimichanga.md rename to content/chimichanga.md index 00c07f6..ae983b2 100644 --- a/src/chimichanga.md +++ b/content/chimichanga.md @@ -1,4 +1,8 @@ -# Chimichanga +--- +title: "Chimichanga" +date: 2021-03-19 +tags: ['mexican', 'beef', 'basic'] +--- Essentially, just a fried burrito. Use whatever your favorite filling is. @@ -32,5 +36,3 @@ Essentially, just a fried burrito. Use whatever your favorite filling is. ## Contribution - AJ XMR: `45kYSzfMbY79HeuFoJC2sSGwoXCkty7X6F8nD7rNMkmuZvsDwoAnxDk3B1bT4rK2Je6z9cvKoxxGqS7aUbzvQajzEcK8nfQ` - -;tags: mexican beef basic diff --git a/src/chocolate-chip-cookies.md b/content/chocolate-chip-cookies.md similarity index 86% rename from src/chocolate-chip-cookies.md rename to content/chocolate-chip-cookies.md index 801300a..96bd21d 100644 --- a/src/chocolate-chip-cookies.md +++ b/content/chocolate-chip-cookies.md @@ -1,6 +1,10 @@ -# Chocolate Chip Cookies +--- +title: "Chocolate Chip Cookies " +date: 2021-05-13 +tags: ['dessert', 'cookies', 'sweet', 'chocolate'] +--- -![Chocolate Chip Cookies](pix/chocolate-chip-cookies.webp) +![Chocolate Chip Cookies](/pix/chocolate-chip-cookies.webp) - ⏲️ Prep time: 10 min - 🍳Cook time: 10 min @@ -32,5 +36,3 @@ ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: dessert cookies sweet chocolate \ No newline at end of file diff --git a/src/chorizo-and-chickpea-soup.md b/content/chorizo-and-chickpea-soup.md similarity index 87% rename from src/chorizo-and-chickpea-soup.md rename to content/chorizo-and-chickpea-soup.md index 50a05f6..5af3239 100644 --- a/src/chorizo-and-chickpea-soup.md +++ b/content/chorizo-and-chickpea-soup.md @@ -1,4 +1,8 @@ -# Chorizo & Chickpea Soup +--- +title: "Chorizo & Chickpea Soup" +date: 2021-05-08 +tags: ['pork', 'soup', 'spanish', 'quick'] +--- Recommend serving with corn bread. @@ -26,5 +30,3 @@ Recommend serving with corn bread. Recipe modified from original published at: ( https://www.bbcgoodfood.com/recipes/chorizo-chickpea-stew ) - Siggines - [website](http://jacobsiggins.co.uk) - -;tags: pork soup spanish quick diff --git a/src/cinque-pi.md b/content/cinque-pi.md similarity index 87% rename from src/cinque-pi.md rename to content/cinque-pi.md index c70e1c0..0ca8a87 100644 --- a/src/cinque-pi.md +++ b/content/cinque-pi.md @@ -1,6 +1,10 @@ -# Cinque Pi +--- +title: "Cinque Pi" +date: 2021-03-19 +tags: ['italian', 'pasta', 'quick'] +--- -![Cinque Pi](pix/cinque-pi.webp) +![Cinque Pi](/pix/cinque-pi.webp) This is a nice simple dish made up of five ingredients: panna, pomodori, parmigiano, pepe, e prezzemolo @@ -29,5 +33,3 @@ This is a nice simple dish made up of five ingredients: panna, pomodori, parmigi ## Contribution - **Elias Pahls** - [contact](mailto:pahlse@pm.me) - -;tags: italian pasta quick diff --git a/src/classic-bechamel-sauce.md b/content/classic-bechamel-sauce.md similarity index 92% rename from src/classic-bechamel-sauce.md rename to content/classic-bechamel-sauce.md index 2bb349d..887aa0b 100644 --- a/src/classic-bechamel-sauce.md +++ b/content/classic-bechamel-sauce.md @@ -1,4 +1,8 @@ -# Classic béchamel sauce +--- +title: "Classic béchamel sauce" +date: 2021-03-21 +tags: ['basic', 'sauce', 'french', 'italian'] +--- Classic French sauce, base for a lot of dishes @@ -27,5 +31,3 @@ Classic French sauce, base for a lot of dishes ## Contribution -yiusa, eth: `0x68F1317c6512f0267fA711cafB6C134Ae968FA80` - -;tags: basic sauce french italian diff --git a/src/coconut-oil-coffee.md b/content/coconut-oil-coffee.md similarity index 77% rename from src/coconut-oil-coffee.md rename to content/coconut-oil-coffee.md index 054b274..f4bce05 100644 --- a/src/coconut-oil-coffee.md +++ b/content/coconut-oil-coffee.md @@ -1,4 +1,8 @@ -# Coconut Oil Coffee +--- +title: "Coconut Oil Coffee" +date: 2021-03-16 +tags: ['drink', 'sweet', 'breakfast'] +--- - 🍽️ Servings: 1 @@ -15,5 +19,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: drink sweet breakfast diff --git a/src/coleslaw.md b/content/coleslaw.md similarity index 93% rename from src/coleslaw.md rename to content/coleslaw.md index f218623..fab67af 100644 --- a/src/coleslaw.md +++ b/content/coleslaw.md @@ -1,4 +1,8 @@ -# Coleslaw +--- +title: "Coleslaw" +date: 2021-05-08 +tags: ['side', 'cabbage', 'southern', 'salad'] +--- This is a coleslaw recipe that I got from a chili restaurant in my neighborhood that closed down a few years ago. This recipe makes more dressing than needed for the coleslaw, so you can save it or use it as a vegetable dip. @@ -37,5 +41,3 @@ This is a coleslaw recipe that I got from a chili restaurant in my neighborhood ## Contribution - Declan Cash - [website](https://declancash.com) - -;tags: side cabbage southern salad diff --git a/src/collard-greens-with-smoked-duck-and-parnips.md b/content/collard-greens-with-smoked-duck-and-parnips.md similarity index 91% rename from src/collard-greens-with-smoked-duck-and-parnips.md rename to content/collard-greens-with-smoked-duck-and-parnips.md index de40881..959d8fd 100644 --- a/src/collard-greens-with-smoked-duck-and-parnips.md +++ b/content/collard-greens-with-smoked-duck-and-parnips.md @@ -1,4 +1,8 @@ -# Collard Greens with Smoked Duck and Parsnips +--- +title: "Collard Greens with Smoked Duck and Parsnips" +date: 2021-03-29 +tags: ['vegetables', 'side', 'duck'] +--- This dish was a pandemic leftover invention loosely inspired by Ethiopian gomen. It can be served as a side dish, but we eat it an an entree. If you intend it as a side dish, then this serves 4. The smoked duck adds a bit of saltiness, so it's better to season to taste after cooking. Serve with good quality, crusty bread. @@ -26,5 +30,3 @@ This dish was a pandemic leftover invention loosely inspired by Ethiopian gomen. ## Contribution - Jayson - -;tags: vegetables side duck diff --git a/src/cooked-chickpeas.md b/content/cooked-chickpeas.md similarity index 86% rename from src/cooked-chickpeas.md rename to content/cooked-chickpeas.md index 8daba94..59a9c1d 100644 --- a/src/cooked-chickpeas.md +++ b/content/cooked-chickpeas.md @@ -1,4 +1,8 @@ -# Cooked Chickpeas +--- +title: "Cooked Chickpeas" +date: 2021-03-17 +tags: ['basic', 'beans', 'fasting'] +--- Easy recipe for cooked chickpeas. Can be add to salads, rice, or almost anything else. @@ -23,5 +27,3 @@ Easy recipe for cooked chickpeas. Can be add to salads, rice, or almost anything ## Contribution - Carl Zimmerman -- [website](https://codingwithcarl.com) - -;tags: basic beans fasting diff --git a/src/coriander-chicken.md b/content/coriander-chicken.md similarity index 95% rename from src/coriander-chicken.md rename to content/coriander-chicken.md index 80948b4..8248e92 100644 --- a/src/coriander-chicken.md +++ b/content/coriander-chicken.md @@ -1,4 +1,8 @@ -# Coriander Chicken +--- +title: "Coriander Chicken" +date: 2021-04-02 +tags: ['indian', 'lunch', 'spicy'] +--- Boneless chicken marinated in a gravy of yoghurt and coriander @@ -44,5 +48,3 @@ Boneless chicken marinated in a gravy of yoghurt and coriander - Chetan Basuray - [website](https://github.com/chetanbasuray) - [donate](http://chetanbasuray.tk/) - -;tags: indian lunch spicy diff --git a/src/corn-salsa.md b/content/corn-salsa.md similarity index 88% rename from src/corn-salsa.md rename to content/corn-salsa.md index bfee02e..574fe56 100644 --- a/src/corn-salsa.md +++ b/content/corn-salsa.md @@ -1,4 +1,8 @@ -# Corn Salsa +--- +title: "Corn Salsa" +date: 2021-03-23 +tags: ['sauce', 'mexican'] +--- - ⏲️ Prep time: 10 Minutes - 🍳 Cook time: 1 Hour+ in fridge @@ -19,5 +23,3 @@ ## Contributions - Joe Powerhouse - BTC:1KPxw9js2VukakhMv2wUUFUQZnHQL842ju - -;tags: sauce mexican diff --git a/src/country-crisp-cereals.md b/content/country-crisp-cereals.md similarity index 92% rename from src/country-crisp-cereals.md rename to content/country-crisp-cereals.md index 352954a..ebd8535 100644 --- a/src/country-crisp-cereals.md +++ b/content/country-crisp-cereals.md @@ -1,4 +1,8 @@ -# Country Crisp Cereals +--- +title: "Country Crisp Cereals" +date: 2021-03-23 +tags: ['breakfast', 'english'] +--- This is a recipe for making Jordan's Country Crisp-like cereals. @@ -11,12 +15,12 @@ This is a recipe for making Jordan's Country Crisp-like cereals. - Oat Flakes (270 g - 800 mL) - Rice Flour (or any other flour) (20 g - 55mL) - Sugar (100 g) -- Crushed Hazelnuts (20 g) +- Crushed Hazelnuts (20 g) - Oil (any type) (60 g - 75 mL) - Water (50 g) - Chocolate (70 g) (optional) - Vanilla Extract (1/2 tsp) (optional) - + ## Directions 1. Preheat the oven at 120°C. @@ -32,5 +36,3 @@ This is a recipe for making Jordan's Country Crisp-like cereals. ## Contribution Recipe translated from french and tested by [Pr.Walter Bulbazor](https://prwalterbulbazor.868center.tech), from [this blog article](https://vegebon.wordpress.com/2010/07/27/country-crisp-au-chocolat-la-recette-maison/) - -;tags: breakfast cereals english diff --git a/src/country-skillet.md b/content/country-skillet.md similarity index 91% rename from src/country-skillet.md rename to content/country-skillet.md index dbc98ef..15c36b8 100644 --- a/src/country-skillet.md +++ b/content/country-skillet.md @@ -1,6 +1,10 @@ -# Country Breakfast Skillet +--- +title: "Country Breakfast Skillet" +date: 2021-03-12 +tags: ['american', 'breakfast', 'pork'] +--- -![Country Breakfast Skillet](pix/country-skillet.webp) +![Country Breakfast Skillet](/pix/country-skillet.webp) If you are feeling quite hungry after just waking up and want to have a breakfast to fill your HP and stamina bars for the day, I've got just the @@ -50,7 +54,7 @@ have used, but seldom use. thoroughly. 8. Cut the cheese into small slices and add it. 9. Cook for a couple of minutes more, until eggs are cooked enough. Don't let - the eggs dry (unless that's the way you like your eggs ¯\\\_(ツ)\_/¯). + the eggs dry (unless that's the way you like your eggs ¯\\_(ツ)\_/¯). 10. For the final touch, chop the parsley (or whatever other spices/herbs you decided to use) and add it on top. 11. Serve hot and add some freshly ground pepper. @@ -65,5 +69,3 @@ Originally published at [https://www.yaroslavps.com/food/country-breakfast-skill - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: american breakfast pork diff --git a/src/crab-salad.md b/content/crab-salad.md similarity index 79% rename from src/crab-salad.md rename to content/crab-salad.md index baae328..35751c1 100644 --- a/src/crab-salad.md +++ b/content/crab-salad.md @@ -1,6 +1,10 @@ -# Crab salad +--- +title: "Crab salad" +date: 2021-03-22 +tags: ['salad', 'russian'] +--- -![Crab salad](pix/crab-salad.webp) +![Crab salad](/pix/crab-salad.webp) - ⏲️ Prep time: 10 min - 🍳 Cook time: 30 min @@ -28,5 +32,3 @@ ## Contribution Anonymous - -;tags: salad russian diff --git a/src/creamy-mashed-potatoes.md b/content/creamy-mashed-potatoes.md similarity index 92% rename from src/creamy-mashed-potatoes.md rename to content/creamy-mashed-potatoes.md index 13166e0..8a211ff 100644 --- a/src/creamy-mashed-potatoes.md +++ b/content/creamy-mashed-potatoes.md @@ -1,6 +1,10 @@ -# Creamy Mashed Potatoes +--- +title: "Creamy Mashed Potatoes" +date: 2021-03-12 +tags: ['potato', 'side', 'cheesefare'] +--- -![Creamy Mashed Potatoes](pix/creamy-mashed-potatoes.webp) +![Creamy Mashed Potatoes](/pix/creamy-mashed-potatoes.webp) Mashed potatoes is a really great recipe that is often relegated to the position of side dish. This recipe is a spin of the classical mashed potatoes recipe @@ -52,5 +56,3 @@ Originally published at [https://www.yaroslavps.com/food/creamy-mashed-potatoes/ - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: potato side cheesefare diff --git a/src/croutons.md b/content/croutons.md similarity index 88% rename from src/croutons.md rename to content/croutons.md index b2b57bd..1cca8b1 100644 --- a/src/croutons.md +++ b/content/croutons.md @@ -1,6 +1,10 @@ -# Croutons +--- +title: "Croutons" +date: 2021-03-11 +tags: ['basic', 'french', 'salad', 'fasting'] +--- -![croutons](pix/croutons.webp) +![croutons](/pix/croutons.webp) Croutons are an essential addition to many salads. They are delicious and easy to make at home. @@ -20,5 +24,3 @@ Croutons are an essential addition to many salads. They are delicious and easy ## Contributors - gucko - -;tags: basic french salad fasting diff --git a/src/curry-sauce.md b/content/curry-sauce.md similarity index 91% rename from src/curry-sauce.md rename to content/curry-sauce.md index 2a5f681..2084dd0 100644 --- a/src/curry-sauce.md +++ b/content/curry-sauce.md @@ -1,4 +1,8 @@ -# Curry sauce +--- +title: "Curry sauce" +date: 2021-05-08 +tags: ['sauce', 'indian', 'curry'] +--- I like to make double this amount and freeze the rest. @@ -38,5 +42,3 @@ I like to make double this amount and freeze the rest. ## Contribution Fiddelate - -;tags: sauce indian curry diff --git a/src/danish-pancake.md b/content/danish-pancake.md similarity index 80% rename from src/danish-pancake.md rename to content/danish-pancake.md index b145b49..ff8db0d 100644 --- a/src/danish-pancake.md +++ b/content/danish-pancake.md @@ -1,6 +1,10 @@ -# Danish Pancake +--- +title: "Danish Pancake" +date: 2021-03-18 +tags: ['quick', 'breakfast', 'sweet', 'pancake', 'cheesefare'] +--- -![pancake](pix/danish-pancake.webp) +![pancake](/pix/danish-pancake.webp) Danish Pancake recipe @@ -29,5 +33,3 @@ Danish Pancake recipe Jesper XMR: `88cPx6Gzv5RWRRJLstUt6hACF1BRKPp1RMka1ukyu2iuHT7iqzkNfMogYq3YdDAC8AAYRqmqQMkCgBXiwdD5Dvqw3LsPGLU` - -;tags: quick breakfast sweet pancake cheesefare diff --git a/src/demi-glace.md b/content/demi-glace.md similarity index 93% rename from src/demi-glace.md rename to content/demi-glace.md index 9dc1431..51cf1f1 100644 --- a/src/demi-glace.md +++ b/content/demi-glace.md @@ -1,4 +1,8 @@ -# Demi-glace +--- +title: "Demi-glace" +date: 2021-03-29 +tags: ['sauce', 'basic', 'french'] +--- This is a take on a traditional demi-glace without needing to buy an astronomically large amount of veal bones. Use this as your main base for pan sauces, an extra flavor bomb, or a replacement for recipes that call for broth or stock. @@ -23,5 +27,3 @@ These are the basic proportions -- multiply as needed. I typically multiply by s ## Contribution Dan - ETH `0xC86468549c180A296384aAC2F76c8F581691Bc1b` - -;tags: sauce basic french diff --git a/src/diannes-southwest-salad.md b/content/diannes-southwest-salad.md similarity index 82% rename from src/diannes-southwest-salad.md rename to content/diannes-southwest-salad.md index 893cce6..ec45bf9 100644 --- a/src/diannes-southwest-salad.md +++ b/content/diannes-southwest-salad.md @@ -1,6 +1,10 @@ -# Dianne's Southwestern Cornbread Salad +--- +title: "Dianne's Southwestern Cornbread Salad" +date: 2021-04-20 +tags: ['salad', 'mexican', 'southwest', ''] +--- -![Dianne's Southwestern Cornbread Salad](pix/diannes-cornbread-salad.webp) +![Dianne's Southwestern Cornbread Salad](/pix/diannes-cornbread-salad.webp) Dianne's Southwestern Cornbread Salad is as colorful as it is delicious. @@ -25,5 +29,3 @@ Dianne's Southwestern Cornbread Salad is as colorful as it is delicious. 1. **Prepare** cornbread according to package directions, cool, and crumble. Then set aside. 2. **Prepare** salad dressing according to package directions. 3. **Layer** a large bowl with half each of cornbread, lettuce, and the next 6 ingredients: spoon half of dressing evenly over top. Repeat layers with remaining ingredients and dressing. Cover and chill at least 2 hours. - -;tags: salad mexican southwest diff --git a/src/dominican-spaghetti.md b/content/dominican-spaghetti.md similarity index 89% rename from src/dominican-spaghetti.md rename to content/dominican-spaghetti.md index dc74cdc..ebc2739 100644 --- a/src/dominican-spaghetti.md +++ b/content/dominican-spaghetti.md @@ -1,4 +1,8 @@ -# Dominican Spaghetti +--- +title: "Dominican Spaghetti" +date: 2021-03-17 +tags: ['pasta', 'supper', 'dominican', 'cheesefare'] +--- - ⏲️ Prep time: 10 min - 🍳 Cook time: 25 min @@ -33,5 +37,3 @@ ## Contribution - Carl Zimmerman -- [website](https://codingwithcarl.com) - -;tags: pasta supper dominican cheesefare diff --git a/src/dried-tomato-plum-spread.md b/content/dried-tomato-plum-spread.md similarity index 83% rename from src/dried-tomato-plum-spread.md rename to content/dried-tomato-plum-spread.md index aeb717b..8a15aaa 100644 --- a/src/dried-tomato-plum-spread.md +++ b/content/dried-tomato-plum-spread.md @@ -1,4 +1,8 @@ -# Dried tomato & plum bread spread +--- +title: "Dried tomato & plum bread spread" +date: 2021-03-11 +tags: ['bread', 'quick', 'snack', 'spread', 'fasting'] +--- Quick and simple bread spread. @@ -19,5 +23,3 @@ Quick and simple bread spread. ## Contribution - Patryk Niedźwiedziński - [website](https://niedzwiedzinski.cyou) - -;tags: bread quick snack spread fasting diff --git a/src/drunken-beans.md b/content/drunken-beans.md similarity index 89% rename from src/drunken-beans.md rename to content/drunken-beans.md index 08d8fb8..9364bca 100644 --- a/src/drunken-beans.md +++ b/content/drunken-beans.md @@ -1,4 +1,8 @@ -# Drunken beans (Pintos Borrachos) +--- +title: "Drunken beans (Pintos Borrachos)" +date: 2021-03-11 +tags: ['beans', 'stew'] +--- Pinto beans cooking with beer, what beer you use can change the dish. @@ -26,5 +30,3 @@ Pinto beans cooking with beer, what beer you use can change the dish. ## Contribution - just a dude who likes cooking - -;tags: beans stew diff --git a/src/eggroll-in-a-bowl.md b/content/eggroll-in-a-bowl.md similarity index 93% rename from src/eggroll-in-a-bowl.md rename to content/eggroll-in-a-bowl.md index 224303a..bf658a7 100644 --- a/src/eggroll-in-a-bowl.md +++ b/content/eggroll-in-a-bowl.md @@ -1,4 +1,8 @@ -# Egg Roll in a Bowl +--- +title: "Egg Roll in a Bowl" +date: 2021-03-23 +tags: ['quick', 'asian', 'cabbage'] +--- Egg rolls, but, you know, in a bowl. @@ -30,5 +34,3 @@ Egg rolls, but, you know, in a bowl. ## Contribution the-birchmen - BAT [GitHub](https://github.com/the-birchmen/) - -;tags: quick asian cabbage diff --git a/src/eggs.md b/content/eggs.md similarity index 96% rename from src/eggs.md rename to content/eggs.md index 85a1771..a7108d9 100644 --- a/src/eggs.md +++ b/content/eggs.md @@ -1,4 +1,8 @@ -# Eggs +--- +title: "Eggs" +date: 2021-03-10 +tags: ['eggs', 'basic', 'cheesefare'] +--- Eggs are great. This page will contain all sorts of "basic" ways of having an egg. Feel free to suggest more, as per the instructions on the @@ -57,5 +61,3 @@ of ham, mushrooms, chopped tomatoes, etc., before cracking the eggs in. - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - Deven Blake -- [website](http://www.trinity.moe) - -;tags: eggs basic cheesefare diff --git a/src/erwtensoep.md b/content/erwtensoep.md similarity index 95% rename from src/erwtensoep.md rename to content/erwtensoep.md index 067d0bc..2615a63 100644 --- a/src/erwtensoep.md +++ b/content/erwtensoep.md @@ -1,4 +1,8 @@ -# Erwtensoep (Dutch pea soup) +--- +title: "Erwtensoep (Dutch pea soup)" +date: 2021-03-23 +tags: ['dutch', 'soup', 'vegetables'] +--- Erwtensoep, also called snert, is the Dutch version of pea soup. Slices of rookworst (smoked sausage) are added before serving. The soup, which is traditionally eaten during the winter, is emblematic of Dutch cuisine. @@ -43,5 +47,3 @@ Pancakes are sometimes served with pea soup; this dish is called snert met strui - Thomas - [@Thomas05t](https://github.com/Thomas05t) - Rijk - [@rijkvp](https://github.com/rijkvp) - -;tags: dutch soup vegetables diff --git a/src/fajita-seasoning.md b/content/fajita-seasoning.md similarity index 85% rename from src/fajita-seasoning.md rename to content/fajita-seasoning.md index f2329c9..8e8419c 100644 --- a/src/fajita-seasoning.md +++ b/content/fajita-seasoning.md @@ -1,4 +1,8 @@ -# Fajita Seasoning +--- +title: "Fajita Seasoning" +date: 2021-03-17 +tags: ['basic', 'mexican', 'fasting'] +--- Simple seasoning mix similar to Old El Paso. Can be used for any Mexican dishes or plain meats. @@ -23,5 +27,3 @@ Simple seasoning mix similar to Old El Paso. Can be used for any Mexican dishes ## Contribution - Carl Zimmerman -- [website](https://codingwithcarl.com) - -;tags: basic mexican fasting diff --git a/src/fish-curry.md b/content/fish-curry.md similarity index 90% rename from src/fish-curry.md rename to content/fish-curry.md index 53c2eab..ee56a0a 100644 --- a/src/fish-curry.md +++ b/content/fish-curry.md @@ -1,4 +1,8 @@ -# Fish Curry +--- +title: "Fish Curry" +date: 2021-03-15 +tags: ['thai', 'fish'] +--- Best served with white rice @@ -28,5 +32,3 @@ Best served with white rice ## Contribution - Thijs Wester - [website](https://twester.tk) - -;tags: thai fish diff --git a/src/flammkuchen.md b/content/flammkuchen.md similarity index 95% rename from src/flammkuchen.md rename to content/flammkuchen.md index a544be7..9391d9f 100644 --- a/src/flammkuchen.md +++ b/content/flammkuchen.md @@ -1,4 +1,8 @@ -# Flammkuchen +--- +title: "Flammkuchen" +date: 2021-03-11 +tags: ['french', 'pork', 'quick'] +--- A recipe for Flammkuchen a very thin crust pizza-like dish - it originates from Elsass, a French region close to where I grew up. I like the recipe because it takes 10 minutes to prepare and another 10 minutes to bake. It goes well with a green salad as a side. @@ -26,5 +30,3 @@ I usually take it down from the baking tray and let it cool down for 2-5 minutes ## Contributors - Bernhard Egger - [website](https://eggerbernhard.ch), [twitter](https://twitter.com/VisionBernie) - -;tags: french pork quick diff --git a/src/fondue.md b/content/fondue.md similarity index 93% rename from src/fondue.md rename to content/fondue.md index 9a54130..7ef43b6 100644 --- a/src/fondue.md +++ b/content/fondue.md @@ -1,4 +1,8 @@ -# Fondue +--- +title: "Fondue" +date: 2021-03-24 +tags: ['swiss', 'cheese'] +--- A swiss classic for cold winter dinners. Traditionally cooked in a "Caquelon" pot and served on a candle heated stove, to keep the cheese from going solid again. @@ -30,5 +34,3 @@ Traditionally cooked in a "Caquelon" pot and served on a candle heated stove, to ## Contribution - sekthor - [github](https://github.com/sekthor), [contact](mailto:sekthor@protonmail.ch) - -;tags: swiss cheese diff --git a/src/francesinha.md b/content/francesinha.md similarity index 95% rename from src/francesinha.md rename to content/francesinha.md index 86eef9d..164496c 100644 --- a/src/francesinha.md +++ b/content/francesinha.md @@ -1,4 +1,8 @@ -# Francesinha +--- +title: "Francesinha" +date: 2021-03-21 +tags: ['portuguese', 'beef'] +--- Francesinha is a traditional dish from the city of Porto. The francesinha in its special sandwich variation consists of linguiça, ham, cold meat and beef steak, covered with melted cheese. @@ -45,5 +49,3 @@ Francesinha is a traditional dish from the city of Porto. The francesinha in its ## Contribution - Artur Mancha -- [Pleroma](https://pleroma.pt/@lisbonjoker) - -;tags: portuguese beef diff --git a/src/french-crepes.md b/content/french-crepes.md similarity index 88% rename from src/french-crepes.md rename to content/french-crepes.md index 2d20c89..6e7cf74 100644 --- a/src/french-crepes.md +++ b/content/french-crepes.md @@ -1,4 +1,8 @@ -# French Crêpes +--- +title: "French Crêpes" +date: 2021-03-14 +tags: ['french', 'dessert', 'breakfast', 'cheesefare'] +--- Like pancakes, but very thin. 15 crêpes. @@ -28,5 +32,3 @@ Like pancakes, but very thin. ### Contributor - Aeredren - [GitHub](https://github.com/Aeredren) - -;tags: french dessert breakfast cheesefare diff --git a/src/french-mustard-sauce-porkchops.md b/content/french-mustard-sauce-porkchops.md similarity index 89% rename from src/french-mustard-sauce-porkchops.md rename to content/french-mustard-sauce-porkchops.md index 666dabe..73ece72 100644 --- a/src/french-mustard-sauce-porkchops.md +++ b/content/french-mustard-sauce-porkchops.md @@ -1,4 +1,8 @@ -# French mustard sauce porkchops (Côtes de porc charcutières) +--- +title: "French mustard sauce porkchops (Côtes de porc charcutières)" +date: 2021-03-10 +tags: ['french', 'pork', 'quick'] +--- French bistrot style porkchops with a mustard, white wine and gherkins sauce. Very quick to cook. @@ -34,5 +38,3 @@ French bistrot style porkchops with a mustard, white wine and gherkins sauce. Ve ## Contribution - anon btc: `1FJSSps89rEMtYm8Vvkp2uyTX9MFpZtcGy` - -;tags: french pork quick diff --git a/src/french-onion-soup.md b/content/french-onion-soup.md similarity index 96% rename from src/french-onion-soup.md rename to content/french-onion-soup.md index 814fdc2..e827275 100644 --- a/src/french-onion-soup.md +++ b/content/french-onion-soup.md @@ -1,4 +1,8 @@ -# French Onion Soup +--- +title: "French Onion Soup" +date: 2021-03-23 +tags: ['french', 'soup'] +--- - ⏲️ Prep time: 30 min - 🍳 Cook time: 3 hours @@ -33,5 +37,3 @@ - Joe Powerhouse - BTC:1KPxw9js2VukakhMv2wUUFUQZnHQL842ju - -;tags: french soup diff --git a/src/french-toast.md b/content/french-toast.md similarity index 90% rename from src/french-toast.md rename to content/french-toast.md index c07f655..16a983b 100644 --- a/src/french-toast.md +++ b/content/french-toast.md @@ -1,6 +1,10 @@ -# French Toast +--- +title: "French Toast" +date: 2021-03-21 +tags: ['breakfast', 'french'] +--- -![French Toast](pix/french-toast.webp) +![French Toast](/pix/french-toast.webp) This recipe results in five slices of easy to make french toast. @@ -33,5 +37,3 @@ This recipe results in five slices of easy to make french toast. ## Contribution - Ryan Wilson - [website](https://rdwilson.xyz), [donate](https://rdwilson.xyz/donate.html) - -;tags: breakfast french diff --git a/src/fried-anglerfish-fillet.md b/content/fried-anglerfish-fillet.md similarity index 92% rename from src/fried-anglerfish-fillet.md rename to content/fried-anglerfish-fillet.md index 55adbe3..6eeab82 100644 --- a/src/fried-anglerfish-fillet.md +++ b/content/fried-anglerfish-fillet.md @@ -1,6 +1,10 @@ -# Fried Anglerfish fillet +--- +title: "Fried Anglerfish fillet" +date: 2021-03-12 +tags: ['fish', 'seafood'] +--- -![anglerfish](pix/fried-anglerfish-fillet-00.webp) +![anglerfish](/pix/fried-anglerfish-fillet-00.webp) This is a simple light-flavoured recipe. Anglerfish (I'm referring specifically to the 'monfish/sea-devil' variant) meat is mild, absorbing the butter and subtle flavours of the herbs. Preparing the anglerfish is an involved process that I'll try and explain to the best of my abilities but watching someone do it would be more then helpful. @@ -29,10 +33,8 @@ This is a simple light-flavoured recipe. Anglerfish (I'm referring specifically 9. Add the herbs, just enough to cover the fillets, salt and pepper too if desired and cover with the lid on low heat until fully cooked. Time here varies but it can be anywhere between 5-10 minutes. 10. Enjoy. This goes well with steamed vegetables. Or potatoes to soak up the butter. -![served](pix/fried-anglerfish-fillet-01.webp) +![served](/pix/fried-anglerfish-fillet-01.webp) ## Contribution Shou, [website](https://shouganai.xyz) - -;tags: fish seafood diff --git a/src/fried-potatoes.md b/content/fried-potatoes.md similarity index 84% rename from src/fried-potatoes.md rename to content/fried-potatoes.md index 75f6a96..49cfaf5 100644 --- a/src/fried-potatoes.md +++ b/content/fried-potatoes.md @@ -1,4 +1,8 @@ -# Fried Potatoes +--- +title: "Fried Potatoes" +date: 2021-03-12 +tags: ['potato', 'quick', 'side', 'fasting'] +--- ## Ingredients - Potatoes @@ -15,5 +19,3 @@ ## Contribution themisch - [website](http://k63fspwi7eekmjy7i3ofk425lseyftfrbikyjs5ndgrvzasxlh6hoiid.onion), [donate](http://k63fspwi7eekmjy7i3ofk425lseyftfrbikyjs5ndgrvzasxlh6hoiid.onion/donate.html) - -;tags: potato quick side fasting diff --git a/src/frittata.md b/content/frittata.md similarity index 95% rename from src/frittata.md rename to content/frittata.md index 77ab2c8..f78703c 100644 --- a/src/frittata.md +++ b/content/frittata.md @@ -1,4 +1,8 @@ -# Frittata +--- +title: "Frittata" +date: 2021-03-15 +tags: ['eggs', 'italian', 'cheesefare'] +--- Very filling egg dish that's easy, fast, and can be eaten at any meal. Any other types of vegetables can be added, this is just what I use the most @@ -34,5 +38,3 @@ Very filling egg dish that's easy, fast, and can be eaten at any meal. Any other ## Contribution - AJ XMR: `45kYSzfMbY79HeuFoJC2sSGwoXCkty7X6F8nD7rNMkmuZvsDwoAnxDk3B1bT4rK2Je6z9cvKoxxGqS7aUbzvQajzEcK8nfQ` - -;tags: eggs italian cheesefare diff --git a/src/garam-masala.md b/content/garam-masala.md similarity index 95% rename from src/garam-masala.md rename to content/garam-masala.md index 3e3d914..5fd5d81 100644 --- a/src/garam-masala.md +++ b/content/garam-masala.md @@ -1,4 +1,8 @@ -# Garam Masala +--- +title: "Garam Masala" +date: 2021-04-02 +tags: ['indian', 'spice'] +--- A spice mixture for most Indian dishes @@ -32,5 +36,3 @@ A spice mixture for most Indian dishes - Chetan Basuray - [website](https://github.com/chetanbasuray) - [donate](http://chetanbasuray.tk/) - -;tags: indian spice diff --git a/src/garlic-toast.md b/content/garlic-toast.md similarity index 89% rename from src/garlic-toast.md rename to content/garlic-toast.md index 01125d5..e93697d 100644 --- a/src/garlic-toast.md +++ b/content/garlic-toast.md @@ -1,4 +1,8 @@ -# Garlic Toast +--- +title: "Garlic Toast" +date: 2021-03-23 +tags: ['basic', 'bread', 'quick', 'side'] +--- Garlic toast, perfect as a substitute for crackers in a cheese platter. @@ -24,5 +28,3 @@ Garlic toast, perfect as a substitute for crackers in a cheese platter. - Jack Crawford - [website](https://github.com/jjcrawford) - Edited by Zyansheep - -;tags: basic bread quick side diff --git a/src/ginataang-kalabasa.md b/content/ginataang-kalabasa.md similarity index 92% rename from src/ginataang-kalabasa.md rename to content/ginataang-kalabasa.md index b862264..a899390 100644 --- a/src/ginataang-kalabasa.md +++ b/content/ginataang-kalabasa.md @@ -1,4 +1,8 @@ -# Ginataang Kalabasa +--- +title: "Ginataang Kalabasa" +date: 2021-03-13 +tags: ['filipino', 'squash'] +--- Or "Squash in Coconut Milk". This is a common Filipino dish. @@ -24,5 +28,3 @@ Or "Squash in Coconut Milk". This is a common Filipino dish. ## Contribution - Jacob Smith - [website](https://jacobwsmith.xyz) - -;tags: filipino squash diff --git a/src/ginger-garlic-broccoli.md b/content/ginger-garlic-broccoli.md similarity index 83% rename from src/ginger-garlic-broccoli.md rename to content/ginger-garlic-broccoli.md index d727610..ea83037 100644 --- a/src/ginger-garlic-broccoli.md +++ b/content/ginger-garlic-broccoli.md @@ -1,4 +1,8 @@ -# Broccoli with Ginger and Garlic Sauce +--- +title: "Broccoli with Ginger and Garlic Sauce" +date: 2021-03-15 +tags: ['side', 'quick', 'asian', 'fasting'] +--- Asian inspired broccoli dish with tasty sauce. Sauce can be used for all kinds of Asian inspired sauted vegetables. @@ -21,7 +25,7 @@ Asian inspired broccoli dish with tasty sauce. Sauce can be used for all kinds o 3. Put broccoli in and steam with lid on for approx. 3 minutes. 4. Drain broccoli and wipe pan dry. 5. One teaspoon of oil and saute garlic and ginger (use sesame seed oil for Asian touch, but neutral or olive oil works well too). -6. Deglaze with sherry, put half a cup ($\approx$ 120 ml) of warm water or chicken stock. Reduce on medium-high heat. +6. Deglaze with sherry, put half a cup (approx 120 ml) of warm water or chicken stock. Reduce on medium-high heat. 7. Stir in soy sauce, brown sugar and lemon juice to your taste. 8. Thicken sauce with corn starch. 9. Put dry cooked broccoli back in and saute for very short time (you want it nice and crunchy). @@ -29,5 +33,3 @@ Asian inspired broccoli dish with tasty sauce. Sauce can be used for all kinds o ## Contribution - mjt91 - [website](https://github.com/mjt91), [donate](https://www.paypal.com/paypalme/mjt91) - -;tags: side quick asian fasting diff --git a/src/gluehwein.md b/content/gluehwein.md similarity index 90% rename from src/gluehwein.md rename to content/gluehwein.md index 2017daa..3bb8ef5 100644 --- a/src/gluehwein.md +++ b/content/gluehwein.md @@ -1,4 +1,8 @@ -# Glühwein - mulled wine +--- +title: "Glühwein - mulled wine" +date: 2021-03-19 +tags: ['drink', 'quick', 'swiss', 'german', 'french'] +--- A recipe for Glühwein/mulled wine a beverage you can find at almost every European christmas market. This recipe is my favorite one - optimized for flavor rather than alcohol content (it still kicks in). @@ -29,5 +33,3 @@ for 1 liter of Glühwein ## Contributors - Bernhard Egger -- [website](https://eggerbernhard.ch), [twitter](https://twitter.com/VisionBernie) - -;tags: drink quick swiss german french diff --git a/src/glutenfree-pfannkuchen.md b/content/glutenfree-pfannkuchen.md similarity index 76% rename from src/glutenfree-pfannkuchen.md rename to content/glutenfree-pfannkuchen.md index 71ba249..4dc9797 100644 --- a/src/glutenfree-pfannkuchen.md +++ b/content/glutenfree-pfannkuchen.md @@ -1,6 +1,10 @@ -# Glutenfree Pfannkuchen (pancakes) +--- +title: "Glutenfree Pfannkuchen (pancakes)" +date: 2021-03-21 +tags: ['basic', 'sweet', 'breakfast', 'german', 'pancake'] +--- -![glutenfree pfannkuchen](pix/glutenfree-pfannkuchen.webp) +![glutenfree pfannkuchen](/pix/glutenfree-pfannkuchen.webp) A very easy recipe for glutenfree Pfannkuchen (german pancakes). @@ -31,5 +35,3 @@ A very easy recipe for glutenfree Pfannkuchen (german pancakes). ## Contribution - Lxgr - [github](https://github.com/lxgr-linux) - -;tags: basic sweet breakfast german pancake diff --git a/src/gnocchi.md b/content/gnocchi.md similarity index 94% rename from src/gnocchi.md rename to content/gnocchi.md index f62a22d..9746018 100644 --- a/src/gnocchi.md +++ b/content/gnocchi.md @@ -1,4 +1,8 @@ -# Gnocchi +--- +title: "Gnocchi" +date: 2021-03-10 +tags: ['italian', 'potato', 'side', 'fasting'] +--- Gnocchi is a pasta based on potato, making it a less bloating alternative to other kinds of pasta. They are substantial and can be roasted in butter and other ingredients. @@ -29,5 +33,3 @@ They are substantial and can be roasted in butter and other ingredients. ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: italian potato side fasting diff --git a/src/greek-easter-cookies.md b/content/greek-easter-cookies.md similarity index 94% rename from src/greek-easter-cookies.md rename to content/greek-easter-cookies.md index e2a6753..4f31ea1 100644 --- a/src/greek-easter-cookies.md +++ b/content/greek-easter-cookies.md @@ -1,4 +1,8 @@ -# Greek Easter Cookies +--- +title: "Greek Easter Cookies" +date: 2021-03-21 +tags: ['dessert', 'snack', 'greek', 'easter'] +--- A very simple, delicious, and traditional greek recipe for easter cookies. @@ -37,5 +41,3 @@ A very simple, delicious, and traditional greek recipe for easter cookies. Rufflikerex: MD file preparation, recipe grammar fixes. Anonymous relative of Rufflikerex: Original recipe. - -;tags: dessert snack greek easter diff --git a/src/guacamole.md b/content/guacamole.md similarity index 88% rename from src/guacamole.md rename to content/guacamole.md index 9579db9..2bcf348 100644 --- a/src/guacamole.md +++ b/content/guacamole.md @@ -1,6 +1,10 @@ -# Fresh Guacamole +--- +title: "Fresh Guacamole" +date: 2021-03-12 +tags: ['mexican', 'spread', 'snack', 'fasting'] +--- -![Fresh Guacamole](pix/guacamole.webp) +![Fresh Guacamole](/pix/guacamole.webp) A nice recipe that functions as a delicious and fresh appetizer, best eaten with some totopos corn chips, especially in a hot summer day. @@ -35,5 +39,3 @@ Originally published at [https://www.yaroslavps.com/food/fresh-guacamole/](https - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: mexican spread snack fasting diff --git a/src/gumbo-shrimp-and-sausage.md b/content/gumbo-shrimp-and-sausage.md similarity index 95% rename from src/gumbo-shrimp-and-sausage.md rename to content/gumbo-shrimp-and-sausage.md index 77c2615..520c6ce 100644 --- a/src/gumbo-shrimp-and-sausage.md +++ b/content/gumbo-shrimp-and-sausage.md @@ -1,4 +1,8 @@ -# Shrimp and Sausage Gumbo +--- +title: "Shrimp and Sausage Gumbo" +date: 2021-03-15 +tags: ['american', 'fish', 'rice'] +--- This recipe is a simplified version of AB's Seafood Gumbo -- [youtube](https://youtu.be/XuiKYWb7s5o) @@ -50,5 +54,3 @@ This recipe is a simplified version of AB's Seafood Gumbo -- [youtube] - Carl Zimmerman -- [website](https://codingwithcarl.com) - Smokin' & Grillin' wit AB -- [youtube](https://www.youtube.com/c/SmokinGrillinwitAB/) - -;tags: american fish rice diff --git a/src/hamburger-patties-all-beef.md b/content/hamburger-patties-all-beef.md similarity index 83% rename from src/hamburger-patties-all-beef.md rename to content/hamburger-patties-all-beef.md index ed61bf7..c5f4733 100644 --- a/src/hamburger-patties-all-beef.md +++ b/content/hamburger-patties-all-beef.md @@ -1,4 +1,8 @@ -# Hamburger Patties +--- +title: "Hamburger Patties" +date: 2021-03-19 +tags: ['american', 'quick', 'beef', 'basic'] +--- 🍽️ Servings: 4 patties @@ -18,5 +22,3 @@ ## Contribution - James Hendrie - -;tags: american quick beef basic diff --git a/src/hamburger-patties.md b/content/hamburger-patties.md similarity index 83% rename from src/hamburger-patties.md rename to content/hamburger-patties.md index 477b522..94e569b 100644 --- a/src/hamburger-patties.md +++ b/content/hamburger-patties.md @@ -1,4 +1,8 @@ -# Hamburger Patties +--- +title: "Hamburger Patties" +date: 2021-03-13 +tags: ['american', 'quick', 'beef', 'sandwich'] +--- 🍽️ Servings: 6 patties @@ -25,4 +29,3 @@ - Anonymous -;tags: american quick beef sandwich diff --git a/src/hangover-eggs.md b/content/hangover-eggs.md similarity index 95% rename from src/hangover-eggs.md rename to content/hangover-eggs.md index 6b2acdb..520fcef 100644 --- a/src/hangover-eggs.md +++ b/content/hangover-eggs.md @@ -1,4 +1,8 @@ -# Hangover Eggs +--- +title: "Hangover Eggs" +date: 2021-03-12 +tags: ['eggs', 'snack', 'quick', 'cheesefare'] +--- Whenever my friends back home would drink to excess, they'd wake up wanting something tasty. I made them what I call "Hangover Eggs". Whether or not you're hungover, they're very delicious! I've recently been making them to gain weight, though you can alter the recipe to whatever @@ -34,5 +38,3 @@ bite. ## Contributors - **Dr. Cat** -- [website](https://github.com/castrated) - -;tags: eggs snack quick cheesefare diff --git a/src/hearty-breakfast-oatmeal.md b/content/hearty-breakfast-oatmeal.md similarity index 78% rename from src/hearty-breakfast-oatmeal.md rename to content/hearty-breakfast-oatmeal.md index 127bbaf..a9c9ef3 100644 --- a/src/hearty-breakfast-oatmeal.md +++ b/content/hearty-breakfast-oatmeal.md @@ -1,6 +1,10 @@ -# Hearty Breakfast Oatmeal +--- +title: "Hearty Breakfast Oatmeal " +date: 2021-03-29 +tags: ['breakfast', 'quick', ''] +--- -![hearty-breakfast-oatmeal-00](pix/hearty-breakfast-oatmeal-00.webp) +![hearty-breakfast-oatmeal-00](/pix/hearty-breakfast-oatmeal-00.webp) If your Oatmeal isn't Hearty Breakfast Oatmeal... Is it even Oatmeal? @@ -26,7 +30,7 @@ If your Oatmeal isn't Hearty Breakfast Oatmeal... Is it even Oatmeal? 1. Chop or mash nuts and fruit. 2. Combine nuts, fruit, and other dry ingredients in a saucepan -![hearty-breakfast-oatmeal-01](pix/hearty-breakfast-oatmeal-01.webp) +![hearty-breakfast-oatmeal-01](/pix/hearty-breakfast-oatmeal-01.webp) 3. Add milk and cook mixture over medium heat until oats are desired tenderness (5-10 mins) 4. Add egg and protein powder and cook for a few more minutes 5. Enjoy @@ -34,5 +38,3 @@ If your Oatmeal isn't Hearty Breakfast Oatmeal... Is it even Oatmeal? ## Contribution - Joel Farthing - [GitHub](https://github.com/J-F-Far) - -;tags: breakfast quick diff --git a/src/hellfire-steak.md b/content/hellfire-steak.md similarity index 89% rename from src/hellfire-steak.md rename to content/hellfire-steak.md index 341eee7..9253ecb 100644 --- a/src/hellfire-steak.md +++ b/content/hellfire-steak.md @@ -1,4 +1,8 @@ -# Hellfire Steak +--- +title: "Hellfire Steak" +date: 2021-03-13 +tags: ['beef', 'quick'] +--- I first learned this recipe from a Bishop I had growing up. It produces quite a good steak despite the unconventional ingredients. @@ -19,5 +23,3 @@ I first learned this recipe from a Bishop I had growing up. It produces quite a ## Contribution - Jacob Smith - [website](https://jacobwsmith.xyz) - -;tags: beef quick diff --git a/src/hoisin-pork-belly.md b/content/hoisin-pork-belly.md similarity index 89% rename from src/hoisin-pork-belly.md rename to content/hoisin-pork-belly.md index 417b3cc..cf49f25 100644 --- a/src/hoisin-pork-belly.md +++ b/content/hoisin-pork-belly.md @@ -1,6 +1,10 @@ -# Hoisin Pork Belly +--- +title: "Hoisin Pork Belly" +date: 2021-04-02 +tags: ['chinese', 'pork', 'spicy', 'sweet'] +--- -![Spicy Glazed Hoisin Pork Belly](pix/hoisin-pork-belly.webp) +![Spicy Glazed Hoisin Pork Belly](/pix/hoisin-pork-belly.webp) Melt-in-mouth fatty pork in a sweet and spicy glaze. @@ -32,5 +36,3 @@ Melt-in-mouth fatty pork in a sweet and spicy glaze. ## Contribution speaker scorned - -;tags: chinese pork spicy sweet diff --git a/src/honey-garlic-chicken.md b/content/honey-garlic-chicken.md similarity index 86% rename from src/honey-garlic-chicken.md rename to content/honey-garlic-chicken.md index 11993ab..c570366 100644 --- a/src/honey-garlic-chicken.md +++ b/content/honey-garlic-chicken.md @@ -1,4 +1,8 @@ -# Honey Garlic Chicken with Broccoli and Brown Rice +--- +title: "Honey Garlic Chicken with Broccoli and Brown Rice" +date: 2021-05-08 +tags: ['chicken', 'broccoli', 'rice', 'quick'] +--- Very easy, high protein. @@ -28,5 +32,3 @@ and garlic. Cook for another 5 minutes. Begin boiling broccoli water. ## Contribution - Connor McLean - -;tags: chicken broccoli rice quick diff --git a/src/hummus.md b/content/hummus.md similarity index 97% rename from src/hummus.md rename to content/hummus.md index d2cd4ed..8451897 100644 --- a/src/hummus.md +++ b/content/hummus.md @@ -1,4 +1,8 @@ -# Hummus +--- +title: "Hummus" +date: 2021-03-13 +tags: ['basic', 'snack', 'spread', 'fasting'] +--- ## Ingredients @@ -29,5 +33,3 @@ - Jacob Smith - [website](https://jacobwsmith.xyz) - K Chesney (revision) - -;tags: basic snack spread fasting diff --git a/src/instant-tom-yam-kung-noodle-soup.md b/content/instant-tom-yam-kung-noodle-soup.md similarity index 91% rename from src/instant-tom-yam-kung-noodle-soup.md rename to content/instant-tom-yam-kung-noodle-soup.md index b7c5ef8..7579b63 100644 --- a/src/instant-tom-yam-kung-noodle-soup.md +++ b/content/instant-tom-yam-kung-noodle-soup.md @@ -1,4 +1,8 @@ -# Instant Tom Yam Kung noodle soup +--- +title: "Instant Tom Yam Kung noodle soup" +date: 2021-03-11 +tags: ['thai', 'quick', 'soup', 'cheesefare'] +--- Instant noodles with processed spices are quick but not the most healthy. It's important to add fresh veggies and eggs. It's a quick tasty lunch, a life saver when going through a busy period. @@ -29,5 +33,3 @@ Pro tip: Squeeze some remaining lime juice into your drinking water. ## Contribution - Ting-Yun Huang, Ricky Lindén - [website](https://rickylinden.com), [donate](https://rickylinden.com/donate.html) - -;tags: thai quick soup cheesefare diff --git a/src/irish-coffee.md b/content/irish-coffee.md similarity index 85% rename from src/irish-coffee.md rename to content/irish-coffee.md index bb8662c..557787a 100644 --- a/src/irish-coffee.md +++ b/content/irish-coffee.md @@ -1,4 +1,8 @@ -# Irish Coffee +--- +title: "Irish Coffee" +date: 2021-03-19 +tags: ['drink', 'sweet', 'breakfast'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 5 min @@ -19,5 +23,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: drink sweet breakfast \ No newline at end of file diff --git a/src/italian-bread.md b/content/italian-bread.md similarity index 93% rename from src/italian-bread.md rename to content/italian-bread.md index aea58ef..d597611 100644 --- a/src/italian-bread.md +++ b/content/italian-bread.md @@ -1,4 +1,8 @@ -# Italian Bread +--- +title: "Italian Bread" +date: 2021-04-06 +tags: ['bread', 'italian', 'fasting'] +--- - ⏲️ Prep time: 2.5 - 3.25 hr - 🍳 Cook time: 25-30 min @@ -27,5 +31,3 @@ ## Contribution - km3000 - -;tags: bread italian fasting \ No newline at end of file diff --git a/src/italian-mulled-wine.md b/content/italian-mulled-wine.md similarity index 89% rename from src/italian-mulled-wine.md rename to content/italian-mulled-wine.md index 8e1120c..01f5bb4 100644 --- a/src/italian-mulled-wine.md +++ b/content/italian-mulled-wine.md @@ -1,6 +1,10 @@ -# Italian Mulled Wine +--- +title: "Italian Mulled Wine" +date: 2021-05-13 +tags: ['alcohol', 'wine', 'liquor', 'drink'] +--- -![Italian Mulled Wine](pix/italian-mulled-wine.webp) +![Italian Mulled Wine](/pix/italian-mulled-wine.webp) - ⏲️ Prep time: 5 min - 🍳Cook time: 15 min @@ -46,5 +50,3 @@ ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: alcohol wine liquor drink diff --git a/src/japanese-noodle-soup.md b/content/japanese-noodle-soup.md similarity index 92% rename from src/japanese-noodle-soup.md rename to content/japanese-noodle-soup.md index b6794f1..eaeef35 100644 --- a/src/japanese-noodle-soup.md +++ b/content/japanese-noodle-soup.md @@ -1,6 +1,10 @@ -# Japanese Noodle Soup +--- +title: "Japanese Noodle Soup" +date: 2021-03-12 +tags: ['japanese', 'chicken', 'soup'] +--- -![Japanese Noodle Soup](pix/japanese-noodle-soup.webp) +![Japanese Noodle Soup](/pix/japanese-noodle-soup.webp) This is a very easy and simple Japanese style ramen noodle soup. This is very cheap to make, and you can really customise this however you wish with the garnish. This is my own spin inspired by other recipes that I found. @@ -42,5 +46,3 @@ This is a very easy and simple Japanese style ramen noodle soup. This is very ch ## Contribution - Jake Keast - [website](https://jakekeast.xyz), xmr: `8BBKCQbL1xSKS8fWE257cVBzerYu1censWYUCncLppo6MPLd3u59ejYE9XMdW4CNL3DGgf1vjG5SHGDEJV95xtxW2wsaANo` - -;tags: japanese chicken soup diff --git a/src/kalderetang-manok.md b/content/kalderetang-manok.md similarity index 84% rename from src/kalderetang-manok.md rename to content/kalderetang-manok.md index 1c8af81..4c8877a 100644 --- a/src/kalderetang-manok.md +++ b/content/kalderetang-manok.md @@ -1,4 +1,8 @@ -# Kalderetang Manok +--- +title: "Kalderetang Manok" +date: 2021-03-21 +tags: ['filipino', 'chicken'] +--- Classic Filipino dish, great paired with freshly cooked rice and a bottle of Coca Cola. @@ -24,15 +28,13 @@ Classic Filipino dish, great paired with freshly cooked rice and a bottle of Coc ## Directions -1. Sauté onions, garlic and (optional) tomato, in a pan of olive oil. +1. Sauté onions, garlic and (optional) tomato, in a pan of olive oil. 2. Put chicken and cook until brown, add 2 tablespoons of salt and pepper. (Note: Make sure the chicken is cook all the way through.) -3. Add fish sauce before adding water and let the chicken boil for a few minutes and then add tomato sauce. +3. Add fish sauce before adding water and let the chicken boil for a few minutes and then add tomato sauce. 4. Add potatoes, carrots, and liver spread. Mix the liver spread and let it boil until broth thickens, let it boil until carrots and potatoes are soft. Add more salt and pepper if needed. -5. Add dried peas, bell pepper and grated cheese and let it cook for a minute. -6. Cook until cheese melts before serving. +5. Add dried peas, bell pepper and grated cheese and let it cook for a minute. +6. Cook until cheese melts before serving. ## Contribution - Jess Calape - [twitter](https://twitter.com/justjess1128) - -;tags: filipino chicken \ No newline at end of file diff --git a/src/ketchup.md b/content/ketchup.md similarity index 92% rename from src/ketchup.md rename to content/ketchup.md index b6490cb..d83c428 100644 --- a/src/ketchup.md +++ b/content/ketchup.md @@ -1,4 +1,8 @@ -# Ketchup +--- +title: "Ketchup" +date: 2021-03-12 +tags: ['basic', 'sauce', 'fasting'] +--- - Ketchup/Catsup @@ -29,5 +33,3 @@ ## Contribution - Anonymous - -;tags: basic sauce fasting diff --git a/src/kvass.md b/content/kvass.md similarity index 96% rename from src/kvass.md rename to content/kvass.md index f7b66b2..33b7d99 100644 --- a/src/kvass.md +++ b/content/kvass.md @@ -1,4 +1,8 @@ -# Kvass +--- +title: "Kvass" +date: 2021-03-21 +tags: ['drink', 'bread'] +--- [Kvass](https://en.wikipedia.org/wiki/Kvass) is a Slavic fermented beverage which is both simple to make and rich in flavour. @@ -34,5 +38,3 @@ and let it ferment for a week, or until it stops bubbling. ## Contribution - Holsterbau - [website](https://github.com/Holsterbau) - -;tags: drink bread diff --git a/src/lamb-biriyani.md b/content/lamb-biriyani.md similarity index 95% rename from src/lamb-biriyani.md rename to content/lamb-biriyani.md index 2dc77a1..fb85212 100644 --- a/src/lamb-biriyani.md +++ b/content/lamb-biriyani.md @@ -1,9 +1,13 @@ -# Lamb Biriyani +--- +title: "Lamb Biriyani" +date: 2021-03-21 +tags: ['lamb', 'mutton', 'indian'] +--- This recipe makes an Southern Indian (Tamil) style Lamb biriyani that has been adapted to a more western audience (aka a bit less spicy) and can be made with either Lamb or Mutton. Best served with a sauce such as an Onion Raitha [website](https://based.cooking/onion-raitha). -![Lamb Biriyani](pix/lamb-biriyani.webp) +![Lamb Biriyani](/pix/lamb-biriyani.webp) A plated rendering of the dish, made with Mutton. Makes a really hearty ,meaty and delicious dish. The dishes uses a rice to meat ratio of 2:3. PS: the biriyani tastes better the longer it's allowed to soak in it's flavour after cooking. @@ -52,5 +56,3 @@ PS: the biriyani tastes better the longer it's allowed to soak in it's flavour a ## Contribution - Ram Pari - [website](https://github.com/ramkpari) - Donate -> ETH: `bc1q763s4ud0hgfa66ce64gyh6tsss49vyk5cqcm6w` - -;tags: lamb mutton indian diff --git a/src/lasagna.md b/content/lasagna.md similarity index 94% rename from src/lasagna.md rename to content/lasagna.md index f195f77..3295d91 100644 --- a/src/lasagna.md +++ b/content/lasagna.md @@ -1,6 +1,10 @@ -# Lasagna +--- +title: "Lasagna" +date: 2021-03-21 +tags: ['italian', 'pasta'] +--- -![lasagna](pix/lasagna.webp) +![lasagna](/pix/lasagna.webp) A nice recipe for amazing fully home-made lasagna. @@ -34,5 +38,3 @@ A nice recipe for amazing fully home-made lasagna. - Yiusa, eth `0x68f1317c6512f0267fa711cafb6c134ae968fa80` - Josiah -- [website](https://himiko.cloud), [donate](https://himiko.cloud/donate/) - -;tags: italian pasta diff --git a/src/lebanese-lentil-soup.md b/content/lebanese-lentil-soup.md similarity index 91% rename from src/lebanese-lentil-soup.md rename to content/lebanese-lentil-soup.md index 84ed0ba..865ad89 100644 --- a/src/lebanese-lentil-soup.md +++ b/content/lebanese-lentil-soup.md @@ -1,4 +1,8 @@ -# Lebanese Lentil Soup +--- +title: "Lebanese Lentil Soup" +date: 2021-03-30 +tags: ['soup', 'mediterranean', 'lebanese'] +--- Lebanese-Style Lentil Soup with Swiss Chard and Lemon - ⏲️ Prep time: 10 min @@ -30,5 +34,3 @@ Lebanese-Style Lentil Soup with Swiss Chard and Lemon ## Contribution - Skipper Davies [github](https://github.com/ferociousmadman) - -;tags: soup mediterranean lebanese diff --git a/src/lemon-and-oregano-chicken-traybake.md b/content/lemon-and-oregano-chicken-traybake.md similarity index 87% rename from src/lemon-and-oregano-chicken-traybake.md rename to content/lemon-and-oregano-chicken-traybake.md index 602a6fc..d52c611 100644 --- a/src/lemon-and-oregano-chicken-traybake.md +++ b/content/lemon-and-oregano-chicken-traybake.md @@ -1,6 +1,10 @@ -# Lemon and oregano chicken traybake +--- +title: "Lemon and oregano chicken traybake" +date: 2021-03-23 +tags: ['mediterranean', 'chicken', 'traybake'] +--- -![Lemon and oregano chicken traybake](pix/lemon-and-oregano-chicken-traybake.webp) +![Lemon and oregano chicken traybake](/pix/lemon-and-oregano-chicken-traybake.webp) - ⏲️ Prep time: 30 min (in 10 minute intervals) - 🍳 Cook time: 60 min @@ -27,5 +31,3 @@ ## Contribution - Isaac Hill (recipe/photo credit) - [website](https://isaachill.co.uk) - -;tags: mediterranean chicken traybake diff --git a/src/lemon-juice-salad-dressing.md b/content/lemon-juice-salad-dressing.md similarity index 82% rename from src/lemon-juice-salad-dressing.md rename to content/lemon-juice-salad-dressing.md index 73e75e0..203461d 100644 --- a/src/lemon-juice-salad-dressing.md +++ b/content/lemon-juice-salad-dressing.md @@ -1,4 +1,8 @@ -# Lemon juice salad dressing +--- +title: "Lemon juice salad dressing" +date: 2021-03-16 +tags: ['salad', 'basic', 'fasting'] +--- A dressing that goes well on lettuce or any other mixed greens. @@ -18,5 +22,3 @@ A dressing that goes well on lettuce or any other mixed greens. ## Contribution - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - -;tags: salad basic fasting diff --git a/src/lentejas.md b/content/lentejas.md similarity index 90% rename from src/lentejas.md rename to content/lentejas.md index b47f6a4..4f1a5b2 100644 --- a/src/lentejas.md +++ b/content/lentejas.md @@ -1,6 +1,10 @@ -# Sopa de Lentejas +--- +title: "Sopa de Lentejas" +date: 2021-03-21 +tags: ['spanish'] +--- -![Lentejas](pix/lentejas.webp) +![Lentejas](/pix/lentejas.webp) Traditional-spanish dish. Typical spanish! @@ -33,5 +37,3 @@ Traditional-spanish dish. Typical spanish! ## Contribution - [Ignacio Ferrer - Nacchofer31](https://github.com/Nacchofer31) - -;tags: spanish diff --git a/src/lenten-chili.md b/content/lenten-chili.md similarity index 92% rename from src/lenten-chili.md rename to content/lenten-chili.md index e03cd86..f6be790 100644 --- a/src/lenten-chili.md +++ b/content/lenten-chili.md @@ -1,6 +1,10 @@ -# Lenten Chili +--- +title: "Lenten Chili" +date: 2021-03-18 +tags: ['fasting'] +--- -![Lenten chili](pix/lenten-chili.webp) +![Lenten chili](/pix/lenten-chili.webp) - ⏲️ Prep time: 10 min @@ -40,5 +44,3 @@ Let cool for a few minutes and then serve in bowls. ## Contribution - Yorge Z -- [github](https://github.com/yorgez) - -;tags: fasting diff --git a/src/lenten-lentil-curry.md b/content/lenten-lentil-curry.md similarity index 83% rename from src/lenten-lentil-curry.md rename to content/lenten-lentil-curry.md index 2494a4f..9df6faa 100644 --- a/src/lenten-lentil-curry.md +++ b/content/lenten-lentil-curry.md @@ -1,8 +1,12 @@ -# Lenten Lentil Curry +--- +title: "Lenten Lentil Curry" +date: 2021-04-06 +tags: ['spicy', 'curry', 'lentil', 'fasting'] +--- Simple green lentil recipe. Suitable for Lent. -![Lenten Lentil Curry](pix/lenten-lentil-curry.webp) +![Lenten Lentil Curry](/pix/lenten-lentil-curry.webp) - Prep time: 5 min - Cook time: 30-35 min @@ -33,5 +37,3 @@ Have a blessed Lent. ## Contribution - Sinan Kurtulmuş - [website](https://www.sinankurtulmus.net) - -;tags: spicy curry lentil fasting diff --git a/src/limoncello.md b/content/limoncello.md similarity index 88% rename from src/limoncello.md rename to content/limoncello.md index 3126c8e..4cd48d9 100644 --- a/src/limoncello.md +++ b/content/limoncello.md @@ -1,6 +1,10 @@ -# Limoncello +--- +title: "Limoncello" +date: 2021-05-13 +tags: ['alcohol', 'lemons', 'digestivo', 'liquor'] +--- -![Limoncello](pix/limoncello.webp) +![Limoncello](/pix/limoncello.webp) - ⏲️ Prep time: 10 min - 🍳Wait time: 20 days @@ -26,5 +30,3 @@ ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: alcohol lemons digestivo liquor diff --git a/src/liverpate.md b/content/liverpate.md similarity index 92% rename from src/liverpate.md rename to content/liverpate.md index 89cd64b..3c97072 100644 --- a/src/liverpate.md +++ b/content/liverpate.md @@ -1,4 +1,8 @@ -# Liver Pate +--- +title: "Liver Pate" +date: 2021-03-11 +tags: ['pate', 'liver'] +--- Good start for trying to eat more organs. It even tastes very nice. @@ -26,5 +30,3 @@ With beef liver, remove its membrane, that is on top, with your fingers. Cut it ## Contribution - vod3 btc: `3DdikYnxPHv6Bz6qgXYoyxrcbikADqxwNd` - -;tags: pate liver diff --git a/src/loaded-mexican-rice.md b/content/loaded-mexican-rice.md similarity index 92% rename from src/loaded-mexican-rice.md rename to content/loaded-mexican-rice.md index a82c246..48aaf5a 100644 --- a/src/loaded-mexican-rice.md +++ b/content/loaded-mexican-rice.md @@ -1,4 +1,8 @@ -# Loaded Mexican Rice +--- +title: "Loaded Mexican Rice" +date: 2021-03-21 +tags: ['rice', 'texmex'] +--- A tex-mex style mexican rice with beans and meat. Adding the beans and meat take it from a side dish to good good burrito filling. :x @@ -30,5 +34,3 @@ dish to good good burrito filling. :x [Github](https://github.com/MrMip), [Website](https://mrmip.dev) - -;tags: rice texmex diff --git a/src/lobster-bisque.md b/content/lobster-bisque.md similarity index 95% rename from src/lobster-bisque.md rename to content/lobster-bisque.md index ed0fa09..a7c0277 100644 --- a/src/lobster-bisque.md +++ b/content/lobster-bisque.md @@ -1,4 +1,8 @@ -# Lobster bisque +--- +title: "Lobster bisque" +date: 2021-03-23 +tags: ['french', 'seafood', 'soup'] +--- Creamy french lobster soup perfect for the holidays, you can optionally replace the lobster with any other shellfish. @@ -47,5 +51,3 @@ Creamy french lobster soup perfect for the holidays, you can optionally replace ## Contribution - Yiusa, eth `0x68f1317c6512f0267fa711cafb6c134ae968fa80` - -;tags: french seafood soup diff --git a/src/mapo-tofu.md b/content/mapo-tofu.md similarity index 86% rename from src/mapo-tofu.md rename to content/mapo-tofu.md index dfc1970..a17a24d 100644 --- a/src/mapo-tofu.md +++ b/content/mapo-tofu.md @@ -1,6 +1,10 @@ -# Mapo Tofu (麻婆豆腐) +--- +title: "Mapo Tofu (麻婆豆腐)" +date: 2021-05-13 +tags: ['chinese', 'pork', 'tofu'] +--- -![Mapo Tofu Over Rice](pix/mapo-tofu-01.webp) +![Mapo Tofu Over Rice](/pix/mapo-tofu-01.webp) - ⏲️ Prep time: 10 min - 🍳Cook time: 15 min @@ -16,7 +20,7 @@ - 1 tsp cornstarch - 1 tsp white pepper powder -### Braise +### Braise - 2 tbsp spicy doubanjiang (la doubanjiang) - 1 tsp dou-chi @@ -29,8 +33,8 @@ ## Directions -![Mapo Tofu Simmering](pix/mapo-tofu-02.webp) -1. Marinade the pork in shaoxing cooking wine, a splash of cooking oil, the soy sauce, +![Mapo Tofu Simmering](/pix/mapo-tofu-02.webp) +1. Marinade the pork in shaoxing cooking wine, a splash of cooking oil, the soy sauce, 2. Add cooking oil to a wok and sear the ground pork until browned, chopping it up as it cooks 3. Add the doubanjiang and let it simmer for about a minute 4. Add the minced aromatics (ginger, garlic) scallion whites, and dou-chi and cook until fragrant @@ -43,5 +47,3 @@ ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: chinese pork tofu \ No newline at end of file diff --git a/src/maque-choux.md b/content/maque-choux.md similarity index 91% rename from src/maque-choux.md rename to content/maque-choux.md index bd07170..a1112e1 100644 --- a/src/maque-choux.md +++ b/content/maque-choux.md @@ -1,4 +1,8 @@ -# Maque Choux +--- +title: "Maque Choux" +date: 2021-03-12 +tags: ['american', 'corn', 'fasting'] +--- An old cajun recipe for stewed corn & tomatoes. Enjoyable at any time of year, but I love to make it on hot summer afternoons as a side to a sausage dish. Pairs well with brown ales. @@ -24,5 +28,3 @@ a sausage dish. Pairs well with brown ales. ## Contributors - **Dr. Cat** -- [website](https://github.com/castrated/) - -;tags: american corn fasting diff --git a/src/marinated-pork-steaks.md b/content/marinated-pork-steaks.md similarity index 92% rename from src/marinated-pork-steaks.md rename to content/marinated-pork-steaks.md index e6f6d9b..b827a64 100644 --- a/src/marinated-pork-steaks.md +++ b/content/marinated-pork-steaks.md @@ -1,4 +1,8 @@ -# Marinated pork steaks +--- +title: "Marinated pork steaks " +date: 2021-03-11 +tags: ['pork', 'steak'] +--- A tasty simple marinade that fits well with pork. @@ -27,5 +31,3 @@ And just like that you got yourself some tasty pork steaks. ## Contribution - Ricky Lindén - [website](https://rickylinden.com), [donate](https://rickylinden.com/donate.html) - -;tags: pork steak diff --git a/src/matcha-cookies.md b/content/matcha-cookies.md similarity index 93% rename from src/matcha-cookies.md rename to content/matcha-cookies.md index bab1571..2b263b3 100644 --- a/src/matcha-cookies.md +++ b/content/matcha-cookies.md @@ -1,4 +1,8 @@ -# Matcha Cookies +--- +title: "Matcha Cookies" +date: 2021-03-11 +tags: ['snack', 'sweet', 'dessert', 'cheesefare'] +--- Matcha is a type of tea leaf powder that has a beautiful vivid green color. However, it’s different from the “green tea” that you drink with Japanese meals. That’s green tea too, but matcha green tea leaves are grown and harvested differently. The leaves are grown under shade. @@ -33,5 +37,3 @@ Matcha is a type of tea leaf powder that has a beautiful vivid green color. Howe ## Contribution - Hamza Masood - -;tags: snack sweet dessert cheesefare diff --git a/src/mayonnaise-or-aioli.md b/content/mayonnaise-or-aioli.md similarity index 90% rename from src/mayonnaise-or-aioli.md rename to content/mayonnaise-or-aioli.md index 7628d52..fb3a6db 100644 --- a/src/mayonnaise-or-aioli.md +++ b/content/mayonnaise-or-aioli.md @@ -1,6 +1,10 @@ -# Mayonnaise or aioli +--- +title: "Mayonnaise or aioli" +date: 2021-04-06 +tags: ['sauce', 'basic', 'aioli'] +--- -![Aioli](pix/mayonnaise-or-aioli.webp) +![Aioli](/pix/mayonnaise-or-aioli.webp) Aioli is pretty much just mayonnaise with garlic, although traditional aioli only includes olive oil and garlic, and no eggs or acid. This recipe uses raw eggs, so if that is sketchy in your region use pasteurized eggs 🥚. @@ -27,5 +31,3 @@ Aioli is pretty much just mayonnaise with garlic, although traditional aioli onl ## Contribution - brox - xmr: `8AaUvC4JPfTVgy66FLd8mVfsPwT7RXJuPK2xySoKnFEhDZPNafpgn6rh8VPBVauyNP17EQQ1HGhMCZdtUJNoD7xnVt1cSLo` - -;tags: sauce basic aioli diff --git a/src/mazurek.md b/content/mazurek.md similarity index 93% rename from src/mazurek.md rename to content/mazurek.md index fed6ecd..96bfd66 100644 --- a/src/mazurek.md +++ b/content/mazurek.md @@ -1,4 +1,8 @@ -# Mazurek +--- +title: "Mazurek" +date: 2021-04-06 +tags: ['polish', 'easter', 'dessert'] +--- Mazurek is a traditional Polish flat cake made in many homes for Easter. Many different toppings are possible. @@ -34,5 +38,3 @@ different toppings are possible. ## Contribution - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - -;tags: polish easter dessert diff --git a/src/meatloaf.md b/content/meatloaf.md similarity index 94% rename from src/meatloaf.md rename to content/meatloaf.md index 4df1d32..7d3d594 100644 --- a/src/meatloaf.md +++ b/content/meatloaf.md @@ -1,6 +1,10 @@ -# Meatloaf +--- +title: "Meatloaf" +date: 2021-03-23 +tags: ['beef', 'american', 'supper'] +--- -![Meatloaf](pix/meatloaf.webp) +![Meatloaf](/pix/meatloaf.webp) This recipe will result in two or three glass dishes of tasty, moist meatloaf. Great for family suppers. @@ -46,5 +50,3 @@ This recipe will result in two or three glass dishes of tasty, moist meatloaf. G ## Contribution - Ryan Wilson - [website](https://rdwilson.xyz), [donate](https://rdwilson.xyz/donate.html) - -;tags: beef american supper diff --git a/src/merchants-buckwheat.md b/content/merchants-buckwheat.md similarity index 92% rename from src/merchants-buckwheat.md rename to content/merchants-buckwheat.md index 67acbb0..ac73262 100644 --- a/src/merchants-buckwheat.md +++ b/content/merchants-buckwheat.md @@ -1,6 +1,10 @@ -# Merchant's Buckwheat +--- +title: "Merchant's Buckwheat" +date: 2021-03-12 +tags: ['russian', 'pork'] +--- -![Merchant's Buckwheat](pix/merchants-buckwheat.webp) +![Merchant's Buckwheat](/pix/merchants-buckwheat.webp) Buckwheat is not very popular outside Russia, the former USSR, and some Asian countries; but it is a nice grain full of nutrients which can be used to prepare @@ -48,5 +52,3 @@ Originally published at [https://www.yaroslavps.com/food/merchants-buckwheat/](h - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: russian pork diff --git a/src/miso-ginger-pork.md b/content/miso-ginger-pork.md similarity index 92% rename from src/miso-ginger-pork.md rename to content/miso-ginger-pork.md index da3c988..0dd38ae 100644 --- a/src/miso-ginger-pork.md +++ b/content/miso-ginger-pork.md @@ -1,4 +1,8 @@ -# Miso Ginger Pork +--- +title: "Miso Ginger Pork" +date: 2021-03-11 +tags: ['japanese', 'pork'] +--- ## Ingredients @@ -33,5 +37,3 @@ ## Contribution - Jon Paul Uritis - [website](https://jonpauluritis.com), [donate](http://paypal.me/jppope) - -;tags: japanese pork diff --git a/src/miso-soup.md b/content/miso-soup.md similarity index 89% rename from src/miso-soup.md rename to content/miso-soup.md index 717ee18..15e84da 100644 --- a/src/miso-soup.md +++ b/content/miso-soup.md @@ -1,4 +1,8 @@ -# Miso-soup +--- +title: "Miso-soup" +date: 2021-03-23 +tags: ['japanese', 'soup'] +--- Miso-soup is Japanese traditional home cooking. @@ -22,5 +26,3 @@ Miso-soup is Japanese traditional home cooking. ## Contribution - yakataN - [Github](https://github.com/yakataN) - -;tags: japanese soup \ No newline at end of file diff --git a/src/mushroom-risotto.md b/content/mushroom-risotto.md similarity index 93% rename from src/mushroom-risotto.md rename to content/mushroom-risotto.md index 9aa6f5a..de13ea6 100644 --- a/src/mushroom-risotto.md +++ b/content/mushroom-risotto.md @@ -1,4 +1,8 @@ -# Mushroom risotto +--- +title: "Mushroom risotto" +date: 2021-03-21 +tags: ['italian', 'mushrooms', 'wine', 'rice'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 20-30 min @@ -28,5 +32,3 @@ ## Contribution - Robert [github](https://github.com/robert5800) - -;tags: italian mushrooms wine rice diff --git a/src/mushroom-stragonov.md b/content/mushroom-stragonov.md similarity index 93% rename from src/mushroom-stragonov.md rename to content/mushroom-stragonov.md index 9b7790c..7fb360a 100644 --- a/src/mushroom-stragonov.md +++ b/content/mushroom-stragonov.md @@ -1,4 +1,8 @@ -# Mushroom Stroganov +--- +title: "Mushroom Stroganov" +date: 2021-05-13 +tags: ['russian', 'pasta', 'mushrooms'] +--- Prep time: 10 Minutes Cook time: 20 Minutes @@ -34,5 +38,3 @@ Servings: 2 ## Contribution - Aayla Semyonova - [website](https://aayla.dev) - -;tags: russian pasta mushrooms diff --git a/src/naan-bread.md b/content/naan-bread.md similarity index 92% rename from src/naan-bread.md rename to content/naan-bread.md index 3c0b285..517e07b 100644 --- a/src/naan-bread.md +++ b/content/naan-bread.md @@ -1,6 +1,10 @@ -# Naan Bread +--- +title: "Naan Bread" +date: 2021-03-15 +tags: ['indian', 'bread', 'fasting'] +--- -![Naan Bread](pix/naan-bread.webp) +![Naan Bread](/pix/naan-bread.webp) A curry serves best with naan that is unleavened bread. Traditionally made in ‘Tandoor or clay oven' but at home, we will be making it in the oven and/or on the stovetop. Naan is not eaten solely but acts as assortments with meat, veggies, or egg items. @@ -30,5 +34,3 @@ A curry serves best with naan that is unleavened bread. Traditionally made in ## Contribution - Nihar Samantaray - [website](https://nihars.com), [contact](mailto:i@nihars.com) - -;tags: indian bread fasting diff --git a/src/nashville-chicken.md b/content/nashville-chicken.md similarity index 97% rename from src/nashville-chicken.md rename to content/nashville-chicken.md index 9e9ea61..65ef7b7 100644 --- a/src/nashville-chicken.md +++ b/content/nashville-chicken.md @@ -1,4 +1,8 @@ -# Nashville Chicken Sandwich +--- +title: "Nashville Chicken Sandwich" +date: 2021-03-21 +tags: ['chicken', 'spicy'] +--- If you love spicy foods and chicken then this Nashville Hot Chicken sandwich recipe is just for you. It takes some time with prepping and process but when you take that first bite all the effort will be worth it. It’s unlike any other fried chicken recipe that includes double frying your chicken and using the same cooking oil from your fry as a sauce for the Nashville Hot Chicken spice. @@ -55,5 +59,3 @@ Sauce For the Buns [https://grillnationbbq.com/wprm_print/1538](https://grillnationbbq.com/wprm_print/1538) - BBQ-Nation _Credit_ [website](https://grillnationbbq.com/wprm_print/1538) - -;tags: chicken spicy diff --git a/src/no-knead-bread.md b/content/no-knead-bread.md similarity index 76% rename from src/no-knead-bread.md rename to content/no-knead-bread.md index 89d6d19..d8b45ee 100644 --- a/src/no-knead-bread.md +++ b/content/no-knead-bread.md @@ -1,6 +1,10 @@ -# No-knead Bread +--- +title: "No-knead Bread" +date: 2021-03-21 +tags: ['bread', 'dough'] +--- -![Finished bread](pix/no-knead-bread-1.webp) +![Finished bread](/pix/no-knead-bread-1.webp) - ⏲️ Prep time: 13 h - 🍳 Cook time: 50 m @@ -18,12 +22,10 @@ 1. Mix the dry ingredients then add the hot water. It should come out as a firm dough. 2. Leave the dough at room temperature for 12 hours. - ![Before baking](pix/no-knead-bread-2.webp) + ![Before baking](/pix/no-knead-bread-2.webp) 3. Preheat oven and pan to 450 F. 4. Bake for 30 minutes covered (e.g. aluminum foil), then 20 minutes uncovered. ## Contribution - [By enthdegree.](https://ebn0.net) - -;tags: bread dough diff --git a/src/no-knead-pizza-dough.md b/content/no-knead-pizza-dough.md similarity index 89% rename from src/no-knead-pizza-dough.md rename to content/no-knead-pizza-dough.md index ed42433..767e825 100644 --- a/src/no-knead-pizza-dough.md +++ b/content/no-knead-pizza-dough.md @@ -1,4 +1,8 @@ -# No-knead pizza dough +--- +title: "No-knead pizza dough" +date: 2021-03-21 +tags: ['basic', 'pizza', 'dough'] +--- Perfect for pan pizza in an 11 inch iron skillet. @@ -24,5 +28,3 @@ Perfect for pan pizza in an 11 inch iron skillet. ## Contribution - brox - xmr: `8AaUvC4JPfTVgy66FLd8mVfsPwT7RXJuPK2xySoKnFEhDZPNafpgn6rh8VPBVauyNP17EQQ1HGhMCZdtUJNoD7xnVt1cSLo` - -;tags: basic pizza dough diff --git a/src/oatmeal-pancakes.md b/content/oatmeal-pancakes.md similarity index 82% rename from src/oatmeal-pancakes.md rename to content/oatmeal-pancakes.md index 782ed9f..c4ab15b 100644 --- a/src/oatmeal-pancakes.md +++ b/content/oatmeal-pancakes.md @@ -1,5 +1,9 @@ -# Oatmeal Pancakes -![oatmeal-pancakes](pix/oatmeal-pancakes.webp) +--- +title: "Oatmeal Pancakes" +date: 2021-04-15 +tags: ['breakfast', 'sweet', 'dessert', 'pancake'] +--- +![oatmeal-pancakes](/pix/oatmeal-pancakes.webp) - ⏲️ Prep time: 10 min - 🍳 Cook time: 15 min @@ -26,5 +30,3 @@ ## Contribution - wpnwbn - -;tags: breakfast sweet dessert pancake diff --git a/src/oats.md b/content/oats.md similarity index 93% rename from src/oats.md rename to content/oats.md index 3b8166f..572c053 100644 --- a/src/oats.md +++ b/content/oats.md @@ -1,4 +1,8 @@ -# Oats +--- +title: "Oats" +date: 2021-03-10 +tags: ['sweet', 'breakfast', 'quick', 'fasting'] +--- Oats are great for breakfast. On their own they're pretty bland, but become great when you add some things to the bowl. This recipe offers some suggestions @@ -41,5 +45,3 @@ size. My personal "standard serving" is 1/3 cup steel cut or 1/2 cup rolled ## Contribution - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - -;tags: sweet breakfast quick fasting diff --git a/src/oaty-pancakes.md b/content/oaty-pancakes.md similarity index 90% rename from src/oaty-pancakes.md rename to content/oaty-pancakes.md index 56aae68..282d89a 100644 --- a/src/oaty-pancakes.md +++ b/content/oaty-pancakes.md @@ -1,4 +1,8 @@ -# Oaty Pancakes +--- +title: "Oaty Pancakes" +date: 2021-03-13 +tags: ['breakfast', 'quick', 'sweet', 'pancake', 'cheesefare'] +--- - ⏲️ Prep time: 10 min - 🍳 Cook time: 10 min @@ -39,5 +43,3 @@ and serve bacon or sausages alongside if you like. ## Contribution Puremana - -;tags: breakfast quick sweet pancake cheesefare diff --git a/src/okonomiyaki.md b/content/okonomiyaki.md similarity index 95% rename from src/okonomiyaki.md rename to content/okonomiyaki.md index 57854d8..94477d8 100644 --- a/src/okonomiyaki.md +++ b/content/okonomiyaki.md @@ -1,4 +1,8 @@ -# Okonomiyaki +--- +title: "Okonomiyaki" +date: 2021-04-06 +tags: ['quick', 'japanese'] +--- Okonomiyaki is a Japanese savory pancake. Instead of using air bubbles to lighten the pancake, thin strips of cabbage provide levity to the cake. This is a very popular street food in Japan, and can be topped with all sorts of different ingredients, as "Okonomiyaki" roughly translates to "Grilled how you like". @@ -34,5 +38,3 @@ Okonomiyaki is a Japanese savory pancake. Instead of using air bubbles to light 7. Sprinkle katsuobushi and nori on top of the sauces and the okonomiyaki is ready to serve. ## Contribution - -;tags: quick japanese diff --git a/src/omelet.md b/content/omelet.md similarity index 93% rename from src/omelet.md rename to content/omelet.md index 3417c74..4fa4c16 100644 --- a/src/omelet.md +++ b/content/omelet.md @@ -1,4 +1,8 @@ -# Omelet +--- +title: "Omelet" +date: 2021-03-12 +tags: ['eggs', 'quick', 'cheesefare'] +--- - ⏲️ Prep time: 10 min - 🍳 Cook time: ≈ 30 min @@ -36,5 +40,3 @@ ## Contribution - Anonymous - -;tags: eggs quick cheesefare diff --git a/src/onion-raitha.md b/content/onion-raitha.md similarity index 91% rename from src/onion-raitha.md rename to content/onion-raitha.md index f4d6475..90ddf73 100644 --- a/src/onion-raitha.md +++ b/content/onion-raitha.md @@ -1,4 +1,8 @@ -# Onion Raitha (Indian Tzatziki) +--- +title: "Onion Raitha (Indian Tzatziki)" +date: 2021-03-21 +tags: ['quick', 'sauce', 'indian'] +--- Raitha is an yogurt-based Indian style sauce that goes great with rice dishes such as Pilau and Biriyani. It's quite similar to a greek Tzatziki and is quick and quite easy to make. It's great especially with super spicy indian dishes as it @@ -30,5 +34,3 @@ provides as a sweet and cooling effect. Ram Pari - [website](https://github.com/ramkpari) Donate -> ETH: `bc1q763s4ud0hgfa66ce64gyh6tsss49vyk5cqcm6w` - -;tags: quick sauce indian \ No newline at end of file diff --git a/src/orange-glorious.md b/content/orange-glorious.md similarity index 84% rename from src/orange-glorious.md rename to content/orange-glorious.md index c5ef4cd..7669235 100644 --- a/src/orange-glorious.md +++ b/content/orange-glorious.md @@ -1,4 +1,8 @@ -# Orange Glorious +--- +title: "Orange Glorious" +date: 2021-03-19 +tags: ['drink', 'sweet', 'breakfast'] +--- - ⏲️ Prep time: 5 min - 🍳 Cook time: 5 min @@ -20,5 +24,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: drink sweet breakfast \ No newline at end of file diff --git a/src/orange-jam.md b/content/orange-jam.md similarity index 90% rename from src/orange-jam.md rename to content/orange-jam.md index 48a9635..688f775 100644 --- a/src/orange-jam.md +++ b/content/orange-jam.md @@ -1,4 +1,8 @@ -# Orange jam +--- +title: "Orange jam" +date: 2021-04-06 +tags: ['jam', 'fruit', 'sweet', 'spread'] +--- This jam is a traditional topping for the Polish [mazurek](mazurek.html), but can be used as a generic sweet spread. @@ -24,5 +28,3 @@ can be used as a generic sweet spread. ## Contribution - Martin Chrzanowski -- [website](https://m-chrzan.xyz), [donate](https://m-chrzan.xyz/crypto.html) - -;tags: jam fruit sweet spread diff --git a/src/pan-pizza.md b/content/pan-pizza.md similarity index 91% rename from src/pan-pizza.md rename to content/pan-pizza.md index 29be084..8502b7d 100644 --- a/src/pan-pizza.md +++ b/content/pan-pizza.md @@ -1,6 +1,10 @@ -# Pan pizza +--- +title: "Pan pizza" +date: 2021-03-21 +tags: ['basic', 'pizza'] +--- -![Pan pizza](pix/pan-pizza.webp) +![Pan pizza](/pix/pan-pizza.webp) Pan pizza gives a thick and crispy crust 🍕. For this recipe, start early with the dough, preferably the night before. It takes a lot of time, but little effort and gives a fantastic result. @@ -32,5 +36,3 @@ Pan pizza gives a thick and crispy crust 🍕. For this recipe, start early with ## Contribution - brox - xmr: `8AaUvC4JPfTVgy66FLd8mVfsPwT7RXJuPK2xySoKnFEhDZPNafpgn6rh8VPBVauyNP17EQQ1HGhMCZdtUJNoD7xnVt1cSLo` - -;tags: basic pizza diff --git a/src/pan-seared-chicken.md b/content/pan-seared-chicken.md similarity index 90% rename from src/pan-seared-chicken.md rename to content/pan-seared-chicken.md index eb9720b..9353800 100644 --- a/src/pan-seared-chicken.md +++ b/content/pan-seared-chicken.md @@ -1,6 +1,10 @@ -# Pan-seared Chicken Fillet +--- +title: "Pan-seared Chicken Fillet" +date: 2021-03-12 +tags: ['chicken', 'fry'] +--- -![Juicy Pan-seared Chicken Fillet](pix/pan-seared-chicken.webp) +![Juicy Pan-seared Chicken Fillet](/pix/pan-seared-chicken.webp) This is a quick and easy recipe to prepare delicious chicken fillets that are juicy on the inside, and crisp on the outside. @@ -38,5 +42,3 @@ Originally published at [https://www.yaroslavps.com/food/pan-seared-chicken-file - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: chicken fry diff --git a/src/pancake.md b/content/pancake.md similarity index 69% rename from src/pancake.md rename to content/pancake.md index 3b1bbf7..51d6cb5 100644 --- a/src/pancake.md +++ b/content/pancake.md @@ -1,6 +1,10 @@ -# Pancake +--- +title: "Pancake" +date: 2021-03-11 +tags: ['quick', 'breakfast', 'sweet', 'pancake', 'cheesefare'] +--- -![Pancakes made at home](pix/pancake.webp) +![Pancakes made at home](/pix/pancake.webp) Here is a simple Pancake recipe @@ -21,5 +25,3 @@ Here is a simple Pancake recipe ## Contribution BeFe - -;tags: quick breakfast sweet pancake cheesefare diff --git a/src/paneer-tikka-masala.md b/content/paneer-tikka-masala.md similarity index 80% rename from src/paneer-tikka-masala.md rename to content/paneer-tikka-masala.md index 8952663..e096b43 100644 --- a/src/paneer-tikka-masala.md +++ b/content/paneer-tikka-masala.md @@ -1,6 +1,10 @@ -# Paneer Tikka Masala +--- +title: "Paneer Tikka Masala" +date: 2021-03-23 +tags: ['indian', 'lunch', 'spicy'] +--- -![paneer tikka masala](pix/paneer-tikka-masala-00.webp "Paneer Tikka Masala served with Naan bread") +![paneer tikka masala](/pix/paneer-tikka-masala-00.webp "Paneer Tikka Masala served with Naan bread") ## Ingredients @@ -25,18 +29,16 @@ 1. Take a glass container, and mix the cubed paneers with half a tea spoon of red chilli powder, turmeric powder, coriander powder, garam masala powder, fenugreek powder, and 50g yogurt. 2. Let the mix marinade for at least an hour. -![paneer tikka masala](pix/paneer-tikka-masala-01.webp "Paneer ready to be marinated on the skewer") +![paneer tikka masala](/pix/paneer-tikka-masala-01.webp "Paneer ready to be marinated on the skewer") 3. Preheat the oven to 200°C (392°F), and place the marinated paneer cubes, with onion, capsicum, and tomato on the skewers. Let them grill in the oven using skewer support, by continuously flipping them every 5 minutes until the outer crust looks crispy enough. 4. Start heating some oil in a pan to add some cardamom and cumin seeds. Let it heat until the flavour is transfused for about a minute or two. 5. Now add chopped onions and tomatoes to the sautee. Add some shaved ginger and garlic paste and let it sauté until some raw flavour disappears. 6. Add the tomato purée, dry fenugreek leaves, and let it cook for about 15 minutes. 7. As the spice and tomato purée looks cooked, add some water to the mixture and let it cook more. -![paneer tikka masala](pix/paneer-tikka-masala-02.webp "Marinated paneer, chopped onions, chopped tomatoes, and corn.") +![paneer tikka masala](/pix/paneer-tikka-masala-02.webp "Marinated paneer, chopped onions, chopped tomatoes, and corn.") 8. Now add the grilled paneer, some chopped vegetables of choice, corn and stir the mixture well. 9. One the added water seems to be evaporated, and the mixture looks a little thicker, turn off the heat and garnish with lemon juice, fresh coriander. (It can be served with bread of any preference.) ## Contribution Arth Patel - [Website](https://arthnpatel.com) - -;tags: indian lunch spicy diff --git a/src/parmesan-potatoes.md b/content/parmesan-potatoes.md similarity index 90% rename from src/parmesan-potatoes.md rename to content/parmesan-potatoes.md index a61799a..b8abfa7 100644 --- a/src/parmesan-potatoes.md +++ b/content/parmesan-potatoes.md @@ -1,6 +1,10 @@ -# Parmesan potatoes +--- +title: "Parmesan potatoes" +date: 2021-03-12 +tags: ['potato', 'side'] +--- -![Parmesan potatoes](pix/parmesan-potatoes.webp) +![Parmesan potatoes](/pix/parmesan-potatoes.webp) You can have this as a side dish, or for breakfast. Well, you can have it whenever and wherever you want if you are cooking it! We are grown ups here @@ -36,5 +40,3 @@ Originally published at [https://www.yaroslavps.com/food/parmesan-potatoes/](htt - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: potato side diff --git a/src/party-mimosa.md b/content/party-mimosa.md similarity index 85% rename from src/party-mimosa.md rename to content/party-mimosa.md index 009467c..8257e93 100644 --- a/src/party-mimosa.md +++ b/content/party-mimosa.md @@ -1,4 +1,8 @@ -# Party Mimosa +--- +title: "Party Mimosa" +date: 2021-03-16 +tags: ['drink', 'sweet', 'breakfast'] +--- ## Ingredients @@ -15,5 +19,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: drink sweet breakfast \ No newline at end of file diff --git a/src/pasta-alla-norma.md b/content/pasta-alla-norma.md similarity index 94% rename from src/pasta-alla-norma.md rename to content/pasta-alla-norma.md index 107bf6c..5939da8 100644 --- a/src/pasta-alla-norma.md +++ b/content/pasta-alla-norma.md @@ -1,4 +1,8 @@ -# Pasta Alla Norma +--- +title: "Pasta Alla Norma" +date: 2021-03-22 +tags: ['italian', 'pasta', 'fasting'] +--- A delicious Sicilian pasta dish, with Aubergines in a tomato sauce topped with fresh basil. @@ -31,5 +35,3 @@ A delicious Sicilian pasta dish, with Aubergines in a tomato sauce topped with f ## Contribution - James - [website](https://jameskent.xyz) - -;tags: italian pasta fasting diff --git a/src/pasta-navy-style.md b/content/pasta-navy-style.md similarity index 93% rename from src/pasta-navy-style.md rename to content/pasta-navy-style.md index 4231d6a..c6656df 100644 --- a/src/pasta-navy-style.md +++ b/content/pasta-navy-style.md @@ -1,6 +1,10 @@ -# Pasta Navy Style +--- +title: "Pasta Navy Style" +date: 2021-03-12 +tags: ['russian', 'pasta', 'beef'] +--- -![Pasta Navy Style](pix/pasta-navy-style.webp) +![Pasta Navy Style](/pix/pasta-navy-style.webp) This is one of the three pasta dishes that I usually cook. It's a Russian pasta recipe that is fast and easy to make and is quite tasty. @@ -48,5 +52,3 @@ Originally published at [https://www.yaroslavps.com/food/navy-style-pasta/](http - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: russian pasta beef diff --git a/src/pasta-sauce.md b/content/pasta-sauce.md similarity index 88% rename from src/pasta-sauce.md rename to content/pasta-sauce.md index 9bf3a86..07b9385 100644 --- a/src/pasta-sauce.md +++ b/content/pasta-sauce.md @@ -1,4 +1,8 @@ -# Pasta sauce +--- +title: "Pasta sauce" +date: 2021-03-10 +tags: ['italian', 'basic', 'sauce', 'fasting'] +--- This is very simple pasta sauce. Unlike modern store-bought sauces, there is no added sugar, only the subtle taste of San Marzano tomatoes. @@ -21,5 +25,3 @@ Unlike modern store-bought sauces, there is no added sugar, only the subtle tast ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: italian basic sauce fasting diff --git a/src/pasta.md b/content/pasta.md similarity index 91% rename from src/pasta.md rename to content/pasta.md index 00f06ad..8f32e16 100644 --- a/src/pasta.md +++ b/content/pasta.md @@ -1,4 +1,8 @@ -# Pasta (store bought) +--- +title: "Pasta (store bought)" +date: 2021-03-10 +tags: ['italian', 'pasta', 'quick', 'basic', 'fasting'] +--- This is a simple outline of how to cook pasta. TL;DR: you boil it. @@ -29,5 +33,3 @@ but if you keep it in there for *too* long, it'll become mush. ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: italian pasta quick basic fasting diff --git a/src/pate-chinois.md b/content/pate-chinois.md similarity index 92% rename from src/pate-chinois.md rename to content/pate-chinois.md index 3e1441e..e232752 100644 --- a/src/pate-chinois.md +++ b/content/pate-chinois.md @@ -1,6 +1,10 @@ -# Pâté Chinois (Quebec Style Shepherd’s Pie) +--- +title: "Pâté Chinois (Quebec Style Shepherd’s Pie)" +date: 2021-03-22 +tags: ['quebec', 'beef', 'pie', 'potato'] +--- -![pate chinois](pix/pate-chinois.webp "Homemade pate chinois with to much ketchup") +![pate chinois](/pix/pate-chinois.webp "Homemade pate chinois with to much ketchup") This is the most traditional dish that every household eats in Quebec. As a kid, you would eat Pâté Chinois at least once a week, either at home or at the school's cafeteria,. It is very similar to a Shepherd’s Pie, as it is divided in 3 layers of ingredients: meat, legumes and mashed potatoes. The literal translation of the name is something like _chinese pie_. You can search for the origin of the name on the internet, I'm not an history teacher. @@ -54,5 +58,3 @@ add the cheese. Season with salt and pepper and set aside. ## Contribution - Julien [contact](mailto:levesquej@protonmail.com) - -;tags: quebec beef pie potato diff --git a/src/peanut-butter.md b/content/peanut-butter.md similarity index 86% rename from src/peanut-butter.md rename to content/peanut-butter.md index 73c6efa..8b8020d 100644 --- a/src/peanut-butter.md +++ b/content/peanut-butter.md @@ -1,4 +1,8 @@ -# Peanut Butter +--- +title: "Peanut Butter" +date: 2021-03-13 +tags: ['spread', 'snack', 'basic', 'fasting'] +--- ## Ingredients @@ -13,5 +17,3 @@ ## Contribution - Jacob Smith - [website](https://jacobwsmith.xyz) - -;tags: spread snack basic fasting diff --git a/src/pepper-sauce.md b/content/pepper-sauce.md similarity index 90% rename from src/pepper-sauce.md rename to content/pepper-sauce.md index 0e62b29..761422d 100644 --- a/src/pepper-sauce.md +++ b/content/pepper-sauce.md @@ -1,4 +1,8 @@ -# Pepper Sauce +--- +title: "Pepper Sauce" +date: 2021-03-23 +tags: ['sauce', 'steak'] +--- A very basic pepper sauce that is great for steaks and other dishes @@ -24,5 +28,3 @@ A very basic pepper sauce that is great for steaks and other dishes ## Contribution - Vili Kangas - -;tags: sauce steak diff --git a/src/pho-soup.md b/content/pho-soup.md similarity index 94% rename from src/pho-soup.md rename to content/pho-soup.md index a893abf..61e44e6 100644 --- a/src/pho-soup.md +++ b/content/pho-soup.md @@ -1,6 +1,10 @@ -# Pho Soup +--- +title: "Pho Soup" +date: 2021-03-23 +tags: ['vietnamese', 'beef'] +--- -![Based Beef Pho](pix/pho-soup.webp) +![Based Beef Pho](/pix/pho-soup.webp) Vietnamese Pho Soup is a tea-like, beef based soup with a flavor profile that differentiates it from the traditional Western palette. This recipe is designed to be as easy to make as possible, while simultaneously being as based as possible. @@ -39,5 +43,3 @@ Vietnamese Pho Soup is a tea-like, beef based soup with a flavor profile that di - Jon Burga - [website](https://jonburga.com), [donate-btc]( `bc1qqsj592ls8xdhxpf5h4e8wj2w3v9uvv6mc6gz7f`) - -;tags: vietnamese beef diff --git a/src/pickled-onions.md b/content/pickled-onions.md similarity index 90% rename from src/pickled-onions.md rename to content/pickled-onions.md index 39de447..7ab1ac9 100644 --- a/src/pickled-onions.md +++ b/content/pickled-onions.md @@ -1,4 +1,8 @@ -# Pickled Red Onions +--- +title: "Pickled Red Onions" +date: 2021-03-16 +tags: ['quick', 'side', 'basic'] +--- A good way to use up older red onions and goes great with just about anything. @@ -25,5 +29,3 @@ A good way to use up older red onions and goes great with just about anything. ## Contribution - AJ XMR: `45kYSzfMbY79HeuFoJC2sSGwoXCkty7X6F8nD7rNMkmuZvsDwoAnxDk3B1bT4rK2Je6z9cvKoxxGqS7aUbzvQajzEcK8nfQ` - -;tags: quick side basic diff --git a/src/pilaf.md b/content/pilaf.md similarity index 94% rename from src/pilaf.md rename to content/pilaf.md index cc898d0..29b112a 100644 --- a/src/pilaf.md +++ b/content/pilaf.md @@ -1,4 +1,8 @@ -# Pilaf +--- +title: "Pilaf" +date: 2021-03-17 +tags: ['uzbek', 'rice', 'lamb'] +--- Popular central asian and middle eastern dish. High in nutrition, designed to be prepared and eaten communally. @@ -31,5 +35,3 @@ High in nutrition, designed to be prepared and eaten communally. ## Contribution - Roman Mirzayev - -;tags: uzbek rice lamb diff --git a/src/pizza-dough.md b/content/pizza-dough.md similarity index 87% rename from src/pizza-dough.md rename to content/pizza-dough.md index 7e292dd..daaa924 100644 --- a/src/pizza-dough.md +++ b/content/pizza-dough.md @@ -1,4 +1,8 @@ -# Pizza Dough +--- +title: "Pizza Dough" +date: 2021-03-11 +tags: ['basic', 'pizza', 'dough'] +--- Here is a simple pizza dough recipe. Basically you use a 2/1 ratio of flour/liquid. If you use other flour like rye, you may need more liquid. @@ -21,5 +25,3 @@ flour/liquid. If you use other flour like rye, you may need more liquid. ## Contribution BeFe - -;tags: basic pizza dough diff --git a/src/pizza-sauce.md b/content/pizza-sauce.md similarity index 89% rename from src/pizza-sauce.md rename to content/pizza-sauce.md index e98eb27..b38cc38 100644 --- a/src/pizza-sauce.md +++ b/content/pizza-sauce.md @@ -1,4 +1,8 @@ -# Pizza sauce +--- +title: "Pizza sauce" +date: 2021-03-21 +tags: ['basic', 'pizza', 'sauce'] +--- - ⏲️ Prep time: 10 min - 🍳 Cook time: 0.5-2 hours @@ -24,5 +28,3 @@ ## Contribution - brox - xmr: `8AaUvC4JPfTVgy66FLd8mVfsPwT7RXJuPK2xySoKnFEhDZPNafpgn6rh8VPBVauyNP17EQQ1HGhMCZdtUJNoD7xnVt1cSLo` - -;tags: basic pizza sauce diff --git a/src/pork-based-chili-con-carne.md b/content/pork-based-chili-con-carne.md similarity index 90% rename from src/pork-based-chili-con-carne.md rename to content/pork-based-chili-con-carne.md index 16523ce..4d702a7 100644 --- a/src/pork-based-chili-con-carne.md +++ b/content/pork-based-chili-con-carne.md @@ -1,4 +1,8 @@ -# Chilli con Carne +--- +title: "Chilli con Carne" +date: 2021-03-12 +tags: ['mexican', 'beans', 'pork'] +--- Thinly minced and non-lean mince is preferred. Spices shall be left to the choice of the cook, if at all desired. @@ -37,5 +41,3 @@ Mince should be broken up well before cooking. ## Contribution [Jacob Siggins](https://www.jacobsiggins.co.uk) - -;tags: mexican beans pork diff --git a/src/pork-carnitas.md b/content/pork-carnitas.md similarity index 92% rename from src/pork-carnitas.md rename to content/pork-carnitas.md index a2fc786..29be211 100644 --- a/src/pork-carnitas.md +++ b/content/pork-carnitas.md @@ -1,4 +1,8 @@ -# Slow-cooked Pork Carnitas +--- +title: "Slow-cooked Pork Carnitas" +date: 2021-03-21 +tags: ['pork', 'slowcooked', 'mexican'] +--- This recipe makes a lot and is super easy. A whole roast usually makes enough for a few meals (depending on how many people will be eating it). Leftovers can be refrigerated for 4-5 days. @@ -34,5 +38,3 @@ This recipe makes a lot and is super easy. A whole roast usually makes enough fo ## Contribution - sam - -;tags: pork slowcooked mexican diff --git a/src/portuguese-steak-with-beer-sauce.md b/content/portuguese-steak-with-beer-sauce.md similarity index 93% rename from src/portuguese-steak-with-beer-sauce.md rename to content/portuguese-steak-with-beer-sauce.md index 86c54a0..54bfd6e 100644 --- a/src/portuguese-steak-with-beer-sauce.md +++ b/content/portuguese-steak-with-beer-sauce.md @@ -1,4 +1,8 @@ -# Bitoque - Portuguese Steak with Beer Sauce +--- +title: "Bitoque - Portuguese Steak with Beer Sauce" +date: 2021-03-10 +tags: ['portuguese', 'beef'] +--- Bitoque (pronounced bee-tok) is a traditional quintessential Portuguese dish, its name comes from being cooked in wood burning ovens in the oil mills. Good in combination with red wine, beer sauce that I am going to also provide the ingredients and directions on how to do, [rice](https://based.cooking/rice.html), french fries and a salad. @@ -26,5 +30,3 @@ Bitoque (pronounced bee-tok) is a traditional quintessential Portuguese dish, it ## Contribution - Artur Mancha -- [Pleroma](https://pleroma.pt/@lisbonjoker) - -;tags: portuguese beef diff --git a/src/potato-and-eggplant-curry.md b/content/potato-and-eggplant-curry.md similarity index 91% rename from src/potato-and-eggplant-curry.md rename to content/potato-and-eggplant-curry.md index c73457e..46fb722 100644 --- a/src/potato-and-eggplant-curry.md +++ b/content/potato-and-eggplant-curry.md @@ -1,4 +1,8 @@ -# Potato and Eggplant (Aubergine) Curry +--- +title: "Potato and Eggplant (Aubergine) Curry" +date: 2021-03-11 +tags: ['indian', 'curry', 'potato', 'fasting'] +--- A simple and tasty curry that is easy to customise. @@ -38,5 +42,3 @@ A simple and tasty curry that is easy to customise. ## Contribution - Luke Chadwick - [website](https://lukechadwick.com) - -;tags: indian curry potato fasting diff --git a/src/potato-leek-soup.md b/content/potato-leek-soup.md similarity index 90% rename from src/potato-leek-soup.md rename to content/potato-leek-soup.md index fd15638..598ff7b 100644 --- a/src/potato-leek-soup.md +++ b/content/potato-leek-soup.md @@ -1,4 +1,8 @@ -# Potato Leek Soup +--- +title: "Potato Leek Soup" +date: 2021-03-18 +tags: ['potato', 'soup', 'vegetables', 'cheesefare'] +--- - ⏲️ Prep time: 15 min - 🍳 Cook time: 1 hour 20 min @@ -27,5 +31,3 @@ ## Contribution - Cactar - [website](https://infinitevoid.dev/) - -;tags: potato soup vegetables cheesefare diff --git a/src/pozharskiye-cutlets.md b/content/pozharskiye-cutlets.md similarity index 96% rename from src/pozharskiye-cutlets.md rename to content/pozharskiye-cutlets.md index d95fa67..df7c8f8 100644 --- a/src/pozharskiye-cutlets.md +++ b/content/pozharskiye-cutlets.md @@ -1,4 +1,8 @@ -# Pozharskiye Cutlets +--- +title: "Pozharskiye Cutlets" +date: 2021-03-19 +tags: ['russian', 'chicken'] +--- Famous Russian cutlet recipe, favoured by Nicholas I. Despite what seems to be a massive amount of butter required, they're rather light, yet creamy. @@ -29,5 +33,3 @@ Despite what seems to be a massive amount of butter required, they're rather lig ## Contribution Dick, with love from the Motherland. - -;tags: russian chicken diff --git a/src/quarkbaellchen.md b/content/quarkbaellchen.md similarity index 81% rename from src/quarkbaellchen.md rename to content/quarkbaellchen.md index 9a43b8a..ef4e7c7 100644 --- a/src/quarkbaellchen.md +++ b/content/quarkbaellchen.md @@ -1,6 +1,10 @@ -# Quarkbällchen – Fried curd balls +--- +title: "Quarkbällchen – Fried curd balls" +date: 2021-04-15 +tags: ['german', 'fry', 'sweet', 'cheesefare'] +--- -![An image of my finished curd balls](pix/quarkbaellchen.webp) +![An image of my finished curd balls](/pix/quarkbaellchen.webp) “Quark” is a type of fresh dairy product. It's usually translated as curd cheese or cottage cheese. @@ -28,5 +32,3 @@ ## Contribution - Kirill Schmidt - [EduGit](https://edugit.org/k1r1ll) - -;tags: german fry sweet cheesefare diff --git a/src/quesadilla.md b/content/quesadilla.md similarity index 88% rename from src/quesadilla.md rename to content/quesadilla.md index b4cbd71..8909a60 100644 --- a/src/quesadilla.md +++ b/content/quesadilla.md @@ -1,6 +1,10 @@ -# Quesadilla +--- +title: "Quesadilla" +date: 2021-03-12 +tags: ['mexican', 'quick', 'cheesefare'] +--- -![brisket quesadilla](pix/quesadilla.webp "Brisket and Bean Quesadilla with using Montery Jack Cheese") +![brisket quesadilla](/pix/quesadilla.webp "Brisket and Bean Quesadilla with using Montery Jack Cheese") A quick and easy low-prep meal, able to be taken anywhere. @@ -31,5 +35,3 @@ A quick and easy low-prep meal, able to be taken anywhere. - peebowo - Zyansheep - -;tags: mexican quick cheesefare diff --git a/src/quickbreakfastspaghetti.md b/content/quickbreakfastspaghetti.md similarity index 94% rename from src/quickbreakfastspaghetti.md rename to content/quickbreakfastspaghetti.md index bd4854c..9833386 100644 --- a/src/quickbreakfastspaghetti.md +++ b/content/quickbreakfastspaghetti.md @@ -1,4 +1,8 @@ -# Quick Breakfast Spaghetti +--- +title: "Quick Breakfast Spaghetti" +date: 2021-03-13 +tags: ['breakfast', 'pasta'] +--- A quick breakfast spaghetti recipe that covers a healthy amount of carbs, fat, and spices. Eggs and/or bacon can be added to cover some protein, you should cook those while the boiler is cooking @@ -28,5 +32,3 @@ the spaghetti for time efficiency. - Sadoon AlBader - [website](https://soulserv.xyz) - Tait hoyem - [website](https://tait.tech) - -;tags: breakfast pasta diff --git a/src/ragu-napoletano.md b/content/ragu-napoletano.md similarity index 87% rename from src/ragu-napoletano.md rename to content/ragu-napoletano.md index 62bf41f..c3ea1c7 100644 --- a/src/ragu-napoletano.md +++ b/content/ragu-napoletano.md @@ -1,8 +1,12 @@ -# Ragu Napoletano +--- +title: "Ragu Napoletano" +date: 2021-05-13 +tags: ['tomato', 'sauce', 'italian', 'pork', 'veal'] +--- -This recipe is known by Italian-Americans as "Sunday Gravy", which originated from the Southern Italian dish Ragu Napoletano. This is my variation of my family's version which was passed down 3 generations to me. +This recipe is known by Italian-Americans as "Sunday Gravy", which originated from the Southern Italian dish Ragu Napoletano. This is my variation of my family's version which was passed down 3 generations to me. -![Ragu Napoletano](pix/ragu-napoletano-1.webp) +![Ragu Napoletano](/pix/ragu-napoletano-1.webp) - ⏲️ Prep time: 30-60 min - 🍳Cook time: 4-5 hrs @@ -33,7 +37,7 @@ This recipe is known by Italian-Americans as "Sunday Gravy", which originated fr - 1 1/2 cups breadcrumbs (baked stale bread, oregano, salt and pepper pulsed in a food processor) - 2-3 eggs - Splash of milk -- Handfull of fresh parsley chopped +- Handfull of fresh parsley chopped - Sprig of fresh basil chopped - 1/2 onion minced - 4-8 cloves garlic minced @@ -44,19 +48,17 @@ This recipe is known by Italian-Americans as "Sunday Gravy", which originated fr 2. For fresh tomatoes, wash and cut out off the green stems of the tomatoes and cut them into a few chunks and lightly salt them over a collander or strainer so they release water and break down quicker 3. For canned tomatoes, use your hands to crush the peeled tomatoes (don't use a food processor) 4. In a large stock pot cook down the tomatoes for approximately 30 mins then use a food mill or strainer to remove the skins and seeds to yield tomato sauce (this can be done beforehand and frozen / canned for months) -![Sauce](pix/ragu-napoletano-2.webp) +![Sauce](/pix/ragu-napoletano-2.webp) 5. Mix all the ingredients in the Meatballs section by hand and form equal sized meatballs 6. Either bake the meatballs at 400°F until brown or fry them with the the other meats in step 7 7. Coat the bottom of a dutch oven or large stock pot with olive oil and sear each meat one by one, removing from the pot once browned on the outside (do not cook the meat all the way through) 8. Sweat the onion and garlic, then deglaze the pan with the red wine 9. Fill the pot with the seared meat, tomato sauce, add the fresh basil, then season with dried oregano, red pepper, salt, pepper, and a pinch of sugar to taste -![Meats](pix/ragu-napoletano-1.webp) +![Meats](/pix/ragu-napoletano-1.webp) 10. Cook on very low flame uncovered for 4-5 hours stirring making sure it doesn't burn -11. Serve over cooked dry pasta such as ziti, penne, rigatoni +11. Serve over cooked dry pasta such as ziti, penne, rigatoni 12. Portion the sauce and meats and freeze in containers for up to 4-6 months ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: tomato sauce italian pork veal \ No newline at end of file diff --git a/src/ragu.md b/content/ragu.md similarity index 94% rename from src/ragu.md rename to content/ragu.md index ff9806e..67c0966 100644 --- a/src/ragu.md +++ b/content/ragu.md @@ -1,4 +1,8 @@ -# Ragù +--- +title: "Ragù" +date: 2021-03-11 +tags: ['italian', 'pasta', 'cheesefare', 'fasting'] +--- ## Ingredients @@ -38,5 +42,3 @@ Reduce heat to very low and add mix to the pan. Support the [site](https://based.cooking/pix/bitcoin-based-cooking.webp). Luke's Vultr referral credits won't last forever... - -;tags: italian pasta cheesefare fasting diff --git a/src/ravioli.md b/content/ravioli.md similarity index 92% rename from src/ravioli.md rename to content/ravioli.md index dfb436c..ef5f4d5 100644 --- a/src/ravioli.md +++ b/content/ravioli.md @@ -1,6 +1,10 @@ -# Ravioli +--- +title: "Ravioli" +date: 2021-05-13 +tags: ['pasta', 'italian'] +--- -![Ravioli](pix/ravioli-01.webp) +![Ravioli](/pix/ravioli-01.webp) - ⏲️ Prep time: 30 min - 🍳Cook time: 2 min @@ -34,28 +38,26 @@ 6. At this point use your hands to bring the sandy mixture together and knead the dough for about 5-10 minutes or until the dough is smooth 7. For the stand mixer method just throw all the ingredients into the mixer with a dough hook and set it to level 4 for about 3-5 minutes and it will be done 8. You might need to scrape the sides down and maybe hand knead the dough a bit longer after it's done to make it into a nice smooth ball -9. Cover the dough with plastic wrap and let it rest in the fridge a bit so it's easier to roll out (15-30 mins) +9. Cover the dough with plastic wrap and let it rest in the fridge a bit so it's easier to roll out (15-30 mins) 10. While the dough is resting, make the filling by first mixing the ricotta and egg into a bowl 11. Zest and juice a lemon peel into the bowl 12. Optionally add seafood ingredients at this point 13. Grate the Pecorino into the bowl, add salt and pepper to taste, and mix to distribute the ingredients evenly 14. Take out the dough and cut it into 4 pieces, keeping the ones not currently being worked on covered so they don't dry out 15. Roll the dough out with a pasta machine down to the point where you can just barely see your hand through it (setting 2-3 out of 7) or roll it out with a rolling pin into a long sheet, maybe like 16 x 8 inches or so -16. At this point you can either cut the sheet in half and make two sheets, a top and bottom, or one sheet, where you will fold the dough over and use the folded seam as one side of the ravioli -![Lobster Ravioli](pix/ravioli-02.webp) +16. At this point you can either cut the sheet in half and make two sheets, a top and bottom, or one sheet, where you will fold the dough over and use the folded seam as one side of the ravioli +![Lobster Ravioli](/pix/ravioli-02.webp) 17. Using a teaspoon, evenly space out the ricotta filling onto the sheets, leaving a few inches on each side for the seams 18. As stated in step 16, either take the 2nd sheet and place it over top or fold over the dough and press down firmly, forcing out any air and making sure the two pieces of dough stick 19. You may need to brush some water onto the dough if it is too heavily floured and not sticking 20. Using a fancy pasta cutter, a knife, or even a pizza cutter, cut evenly between the seams of the raviolis to separate them 21. If you used a pasta cutter, you are now done, store the raviolis on a floured wax paper sheet or freeze them for later -![Finished Ravioli](pix/ravioli-03.webp) +![Finished Ravioli](/pix/ravioli-03.webp) 22. If you don't have a pasta cutter, use a fork to press down the dough around the edges of the cut raviolis to ensure they are firmly closed and no leaks or air bubbles are visible, or else they will explode when cooked 23. To cook, throw them in salted boiling water and they will let you know when they're done when they float to the top (1-2 minutes) 24. Serve the seafood version with a simple fresh red sauce and basil, or spice it up a bit and go with a base of red sauce with some added heavy cream, and a pinch of red pepper flakes to make a pink sauce for the seafood version -![Served Ravioli](pix/ravioli-04.webp) +![Served Ravioli](/pix/ravioli-04.webp) ## Contribution - mfed3 - xmr: `48eEMdYtCQaV5wY7wvmxK6jCxKkia9dgpNTMNT1do7RLWXCwWDgSKjN3kiZ6yHbAuAXWgDGN6imnGT9NPeHWD7zX9hSyHu2` - -;tags: pasta italian \ No newline at end of file diff --git a/src/red-sauce.md b/content/red-sauce.md similarity index 91% rename from src/red-sauce.md rename to content/red-sauce.md index ed1dcdf..db1600c 100644 --- a/src/red-sauce.md +++ b/content/red-sauce.md @@ -1,4 +1,8 @@ -# Red Sauce (Ragu all'Italiana) +--- +title: "Red Sauce (Ragu all'Italiana)" +date: 2021-03-16 +tags: ['italian', 'sauce', ''] +--- My great-grandma's red sauce. All purpose: good for pastas, lasagnas, subs, etc. @@ -35,5 +39,3 @@ My great-grandma's red sauce. All purpose: good for pastas, lasagnas, subs, etc. ## Contribution - Laurent Micheli - [website](https://digitalstatic.xyz) - -;tags: italian sauce diff --git a/src/refried-beans.md b/content/refried-beans.md similarity index 92% rename from src/refried-beans.md rename to content/refried-beans.md index 80c6b40..6cba7e7 100644 --- a/src/refried-beans.md +++ b/content/refried-beans.md @@ -1,6 +1,10 @@ -# Refried Beans +--- +title: "Refried Beans" +date: 2021-03-12 +tags: ['mexican', 'beans', 'fasting'] +--- -![Refried Beans](pix/refried-beans.webp) +![Refried Beans](/pix/refried-beans.webp) One of my favorite dishes that works either as an appetizer or side dish is refried beans. A classic from Mexican cuisine, that is best eaten with some @@ -41,5 +45,3 @@ Originally published at [https://www.yaroslavps.com/food/refried-beans/](https:/ - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: mexican beans fasting diff --git a/src/rice.md b/content/rice.md similarity index 93% rename from src/rice.md rename to content/rice.md index 102765c..2b8b6d2 100644 --- a/src/rice.md +++ b/content/rice.md @@ -1,4 +1,8 @@ -# Rice +--- +title: "Rice" +date: 2021-03-10 +tags: ['basic', 'rice', 'side', 'fasting'] +--- Rice is easy to make in any pot. The simple use of different spices can change its use or what it accents. @@ -29,5 +33,3 @@ For Mexican rice, you might want to avoid cooking in stock to avoid taste clashe ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: basic rice side fasting diff --git a/src/ricotta-lasagna-filling.md b/content/ricotta-lasagna-filling.md similarity index 83% rename from src/ricotta-lasagna-filling.md rename to content/ricotta-lasagna-filling.md index fb28937..4391eb5 100644 --- a/src/ricotta-lasagna-filling.md +++ b/content/ricotta-lasagna-filling.md @@ -1,4 +1,8 @@ -# Ricotta lasagna filling +--- +title: "Ricotta lasagna filling" +date: 2021-03-24 +tags: ['basic', 'italian', 'cheese'] +--- A quick and easy filling for lasagna based on ricotta @@ -22,5 +26,3 @@ A quick and easy filling for lasagna based on ricotta ## Contribution - Josiah - [website](https://himiko.cloud), [donate](https://himiko.cloud/donate/) - -;tags: basic italian cheese diff --git a/src/roasted-chicken-breast.md b/content/roasted-chicken-breast.md similarity index 94% rename from src/roasted-chicken-breast.md rename to content/roasted-chicken-breast.md index e81771d..ed5a6d7 100644 --- a/src/roasted-chicken-breast.md +++ b/content/roasted-chicken-breast.md @@ -1,4 +1,8 @@ -# Roasted chicken breast +--- +title: "Roasted chicken breast" +date: 2021-03-12 +tags: ['chicken', 'roast'] +--- How to roast chicken breast with a "leave-in" probe thermometer. The thermometer ensures the chicken comes out juicy and delicious. @@ -23,5 +27,3 @@ How to roast chicken breast with a "leave-in" probe thermometer. The thermometer ## Contribution - Michael - [website](https://murphym.dev/) - -;tags: chicken roast diff --git a/src/roesti.md b/content/roesti.md similarity index 94% rename from src/roesti.md rename to content/roesti.md index 28478af..e38b7db 100644 --- a/src/roesti.md +++ b/content/roesti.md @@ -1,6 +1,10 @@ -# Rösti +--- +title: "Rösti" +date: 2021-03-12 +tags: ['swiss', 'potato', 'side', 'cheesefare'] +--- -![Rösti](pix/roesti.webp) +![Rösti](/pix/roesti.webp) Used two serving sizes for this Rösti This swiss classic works great together with fried eggs and steamed peas or spinach. @@ -38,5 +42,3 @@ Can be useful to get rid of leftover potatoes from the day before. - **Alexander Bocken** -- [contact](mailto:alexander@bocken.org) - **Elias Pahls** -- [contact](mailto:pahlse@pm.me) - -;tags: swiss potato side cheesefare diff --git a/src/russian-1000-islands-sauce.md b/content/russian-1000-islands-sauce.md similarity index 76% rename from src/russian-1000-islands-sauce.md rename to content/russian-1000-islands-sauce.md index 7856008..d964e46 100644 --- a/src/russian-1000-islands-sauce.md +++ b/content/russian-1000-islands-sauce.md @@ -1,4 +1,8 @@ -# Russian 1000 Islands Sauce +--- +title: "Russian 1000 Islands Sauce" +date: 2021-03-19 +tags: ['basic', 'spread', 'quick', 'russian', 'sauce'] +--- A tasty sauce that goes well with salads or rice. Recipe taken from a Russian monastery. @@ -21,5 +25,3 @@ A tasty sauce that goes well with salads or rice. Recipe taken from a Russian mo ## Contribution - Anon - -;tags: basic spread quick russian sauce diff --git a/src/salsa-verde.md b/content/salsa-verde.md similarity index 91% rename from src/salsa-verde.md rename to content/salsa-verde.md index d7a2bf5..5a05d57 100644 --- a/src/salsa-verde.md +++ b/content/salsa-verde.md @@ -1,4 +1,8 @@ -# Salsa Verde +--- +title: "Salsa Verde" +date: 2021-03-19 +tags: ['mexican', 'sauce'] +--- ## Ingredients @@ -20,5 +24,3 @@ Makes about 2 cups (475mL). Refrigerate leftovers ## Contribution - Nathan - -;tags: mexican sauce diff --git a/src/sauerkraut.md b/content/sauerkraut.md similarity index 92% rename from src/sauerkraut.md rename to content/sauerkraut.md index 8b3ae75..55b08ba 100644 --- a/src/sauerkraut.md +++ b/content/sauerkraut.md @@ -1,4 +1,8 @@ -# Sauerkraut +--- +title: "Sauerkraut" +date: 2021-03-11 +tags: ['german', 'cabbage', 'side', 'fasting'] +--- Sauerkraut is a based lacto-fermented food that is healthy and has a long shelf live. @@ -20,5 +24,3 @@ Sauerkraut is a based lacto-fermented food that is healthy and has a long shelf ## Contribution - Andrej Kirchmaier, XMR: `53QjcCVACp4Fuc5cULMoa8GyS8jyuwLteSihhoAkuezfBMSpnwsQgZ2Mu1cha2fpG8AZqtAwdHmZB6hNqk3K4485HrKQFyS` - -;tags: german cabbage side fasting diff --git a/src/sausage-rolls.md b/content/sausage-rolls.md similarity index 87% rename from src/sausage-rolls.md rename to content/sausage-rolls.md index ffef2c7..29a319f 100644 --- a/src/sausage-rolls.md +++ b/content/sausage-rolls.md @@ -1,4 +1,8 @@ -# Sausage Rolls +--- +title: "Sausage Rolls" +date: 2021-03-22 +tags: ['pork', 'pastry'] +--- - ⏲️ Prep time: 10 min - 🍳 Cook time: 30-60 min @@ -21,5 +25,3 @@ ## Contribution [Jacob Siggins](https://www.jacobsiggins.co.uk) - -;tags: pork pastry diff --git a/src/savory-squash.md b/content/savory-squash.md similarity index 91% rename from src/savory-squash.md rename to content/savory-squash.md index ccc15f8..9e65e3d 100644 --- a/src/savory-squash.md +++ b/content/savory-squash.md @@ -1,4 +1,8 @@ -# Savory Squash +--- +title: "Savory Squash" +date: 2021-03-21 +tags: ['american', 'side', 'fruit'] +--- - Prep Time: 5 mins - Cook Time: 1 Hour @@ -21,5 +25,3 @@ ## Contribution - Joe Powerhouse, BTC: 1KPxw9js2VukakhMv2wUUFUQZnHQL842ju - -;tags: american side fruit diff --git a/src/scandinavian-coffee-cake.md b/content/scandinavian-coffee-cake.md similarity index 93% rename from src/scandinavian-coffee-cake.md rename to content/scandinavian-coffee-cake.md index e2e87a5..2800913 100644 --- a/src/scandinavian-coffee-cake.md +++ b/content/scandinavian-coffee-cake.md @@ -1,4 +1,8 @@ -# Scandinavian Coffee Cake +--- +title: "Scandinavian Coffee Cake" +date: 2021-03-12 +tags: ['sweet', 'dessert', 'cake', 'cheesefare'] +--- * ⏲️ Prep time: 15 min * 🍳 Cook time: ≈ 3 hours @@ -43,5 +47,3 @@ ## Contribution - Anonymous - -;tags: sweet dessert cake cheesefare diff --git a/src/schinkenfleckerl-gratinated.md b/content/schinkenfleckerl-gratinated.md similarity index 92% rename from src/schinkenfleckerl-gratinated.md rename to content/schinkenfleckerl-gratinated.md index e94458b..64a9038 100644 --- a/src/schinkenfleckerl-gratinated.md +++ b/content/schinkenfleckerl-gratinated.md @@ -1,4 +1,8 @@ -# Schinkenfleckerl überbacken, Viennese Mac'n'Cheese +--- +title: "Schinkenfleckerl überbacken, Viennese Mac'n'Cheese" +date: 2021-03-21 +tags: ['austrian', 'ham', 'noodles'] +--- * ⏲️ Prep time: 25 min * 🍳 Cook time: 120 min @@ -37,5 +41,3 @@ There you have it, an idiot-proof carb and protein bomber that should taste reas ## Contribution - Martin Stohanzl - [website](https://loesmartin.at), [youtube](https://www.youtube.com/channel/UCJkTyM5-fcVBkhi7DypoNsg) - -;tags: austrian ham noodles diff --git a/src/schnitzel.md b/content/schnitzel.md similarity index 90% rename from src/schnitzel.md rename to content/schnitzel.md index 825ff1a..ce94788 100644 --- a/src/schnitzel.md +++ b/content/schnitzel.md @@ -1,6 +1,10 @@ -# Schnitzel +--- +title: "Schnitzel" +date: 2021-03-18 +tags: ['austrian', 'beef'] +--- -![schnitzel](pix/schnitzel.webp) +![schnitzel](/pix/schnitzel.webp) Original Austrian breaded meat, pan-fried in butter. @@ -30,5 +34,3 @@ Original Austrian breaded meat, pan-fried in butter. ## Contribution - Tobias & Alexandra Grimm - -;tags: austrian beef diff --git a/src/shakshouka.md b/content/shakshouka.md similarity index 85% rename from src/shakshouka.md rename to content/shakshouka.md index 8b15d01..47de0bf 100644 --- a/src/shakshouka.md +++ b/content/shakshouka.md @@ -1,4 +1,8 @@ -# Shakshouka +--- +title: "Shakshouka" +date: 2021-03-29 +tags: ['breakfast', 'quick'] +--- Shakshouka is a dish of eggs poached in a sauce of tomatoes, olive oil, peppers, onion and garlic, and commonly spiced with cumin, paprika, cayenne pepper, and nutmeg. This recipe is a quick and simple version for a delicious breakfast. @@ -7,7 +11,7 @@ This recipe is a quick and simple version for a delicious breakfast. - 🍳 Cook time: 10 min - 🍽️ Servings: 2 -![Shakshouka](pix/shakshouka-02.webp) +![Shakshouka](/pix/shakshouka-02.webp) ## Ingredients @@ -28,7 +32,7 @@ This recipe is a quick and simple version for a delicious breakfast. 6. Stir and wait for it to get denser 7. Knock the eggs in 8. Season the eggs -![Shakshouka](pix/shakshouka-01.webp) +![Shakshouka](/pix/shakshouka-01.webp) 9. Cover the pan with a lid 10. Cook until eggs are laid 11. Add chives @@ -36,5 +40,3 @@ This recipe is a quick and simple version for a delicious breakfast. ## Contribution - Jakub Korsak -[website](https://korsak.xyz), [donate](https://korsak.xyz/crypto) - -;tags: breakfast quick diff --git a/src/shepherds-pie.md b/content/shepherds-pie.md similarity index 93% rename from src/shepherds-pie.md rename to content/shepherds-pie.md index 9ceef84..b35baa3 100644 --- a/src/shepherds-pie.md +++ b/content/shepherds-pie.md @@ -1,4 +1,8 @@ -# Shepherd's Pie +--- +title: "Shepherd's Pie" +date: 2021-03-30 +tags: ['english', 'lamb', 'pie'] +--- - ⏲️ Prep time: 50 - 60 min - 🍳 Cook time: 30 - 40 min @@ -29,5 +33,3 @@ ## Contribution **Lázaro Blanc** - [Website](https://blnc.io) | [GitHub](https://github.com/lazaroblanc) | [LinkedIn](https://www.linkedin.com/in/lazaroblanc) | [Xing](https://www.xing.com/profile/Lazaro_Blanc) - -;tags: english lamb pie diff --git a/src/shrimp-and-grits.md b/content/shrimp-and-grits.md similarity index 93% rename from src/shrimp-and-grits.md rename to content/shrimp-and-grits.md index 481377c..f69bdc5 100644 --- a/src/shrimp-and-grits.md +++ b/content/shrimp-and-grits.md @@ -1,4 +1,8 @@ -# Shrimp and Grits +--- +title: "Shrimp and Grits" +date: 2021-03-18 +tags: ['american', 'fish', 'breakfast'] +--- This recipe is derived from Smokin' & Grillin' wit AB -- [youtube](https://youtu.be/cjlDBPlTqS0) @@ -35,5 +39,3 @@ This recipe is derived from Smokin' & Grillin' wit AB -- [youtube](https://youtu - Carl Zimmerman -- [website](https://codingwithcarl.com) - Smokin' & Smokin' & Grillin' wit AB -- [youtube channel](https://www.youtube.com/channel/UC6tJ9C5SBvK6b-0cejoc4vg) - -;tags: american fish breakfast diff --git a/src/simple-chicken-curry.md b/content/simple-chicken-curry.md similarity index 91% rename from src/simple-chicken-curry.md rename to content/simple-chicken-curry.md index 2b3a832..89259fc 100644 --- a/src/simple-chicken-curry.md +++ b/content/simple-chicken-curry.md @@ -1,4 +1,8 @@ -# Simple Chicken Curry +--- +title: "Simple Chicken Curry" +date: 2021-03-21 +tags: ['chicken', 'curry', 'stew'] +--- An easy chicken curry recipe which scales very well (double it, triple it, etc.). Best served with rice. @@ -39,5 +43,3 @@ Main Ingredients - lsma - adapted from https://www.cookingclassy.com/chicken-curry/ - -;tags: chicken curry stew diff --git a/src/simple-pasta-cream-sauce.md b/content/simple-pasta-cream-sauce.md similarity index 84% rename from src/simple-pasta-cream-sauce.md rename to content/simple-pasta-cream-sauce.md index 4dabc1f..6d70aa7 100644 --- a/src/simple-pasta-cream-sauce.md +++ b/content/simple-pasta-cream-sauce.md @@ -1,4 +1,8 @@ -# Simple Creamy Pasta Sauce +--- +title: "Simple Creamy Pasta Sauce" +date: 2021-03-23 +tags: ['basic', 'quick', 'sauce', 'pasta'] +--- - ⏲️ Prep time: 2 min - 🍳 Cook time: 3 mins @@ -21,5 +25,3 @@ ## Contribution - herzeleid02 - -;tags: basic quick sauce pasta diff --git a/src/simple-sauce.md b/content/simple-sauce.md similarity index 85% rename from src/simple-sauce.md rename to content/simple-sauce.md index 49de924..7e83758 100644 --- a/src/simple-sauce.md +++ b/content/simple-sauce.md @@ -1,4 +1,8 @@ -# Simple sauce +--- +title: "Simple sauce" +date: 2021-03-13 +tags: ['basic', 'quick', 'sauce', 'cheesefare'] +--- This is a simple and well known recipe. It goes by many names and this recipe is a starting point for many sauces, eg '1000 island sauce'. @@ -16,5 +20,3 @@ This is a simple and well known recipe. It goes by many names and this recipe is - el3ctr0lyte - [github](https://github.com/el3ctr0lyte) - tait Hoyem - [website](https://tait.tech) - -;tags: basic quick sauce cheesefare diff --git a/src/soleier.md b/content/soleier.md similarity index 91% rename from src/soleier.md rename to content/soleier.md index 0f089c3..dcf8b02 100644 --- a/src/soleier.md +++ b/content/soleier.md @@ -1,6 +1,10 @@ -# Soleier (pickled eggs) +--- +title: "Soleier (pickled eggs)" +date: 2021-05-13 +tags: ['snack', 'german', 'eggs', 'pub'] +--- -![Soleier](pix/soleier.webp) +![Soleier](/pix/soleier.webp) Soleier are a german pub dish. They are typically enjoyed between two beers. @@ -41,5 +45,3 @@ Soleier are a german pub dish. They are typically enjoyed between two beers. ## Contribution - SvenT[github](https://github.com/s8svtang) - -;tags: snack german eggs pub diff --git a/src/sourdough-bread-with-seeds-and-grains.md b/content/sourdough-bread-with-seeds-and-grains.md similarity index 83% rename from src/sourdough-bread-with-seeds-and-grains.md rename to content/sourdough-bread-with-seeds-and-grains.md index 1d9de1c..49a3b5e 100644 --- a/src/sourdough-bread-with-seeds-and-grains.md +++ b/content/sourdough-bread-with-seeds-and-grains.md @@ -1,6 +1,10 @@ -# Sourdough bread with seeds and grains +--- +title: "Sourdough bread with seeds and grains" +date: 2021-03-23 +tags: ['sourdough', 'bread'] +--- -![Sourdough bread with seeds and grains](pix/sourdough-bread-with-seeds-and-grains.webp) +![Sourdough bread with seeds and grains](/pix/sourdough-bread-with-seeds-and-grains.webp) - ⏲️ Prep time: 15 min - 🍳 Cook time: 120 min @@ -47,5 +51,3 @@ ## Contribution - SirStark - -;tags: sourdough bread diff --git a/src/sourdough-loaf.md b/content/sourdough-loaf.md similarity index 96% rename from src/sourdough-loaf.md rename to content/sourdough-loaf.md index f824cc4..8005bba 100644 --- a/src/sourdough-loaf.md +++ b/content/sourdough-loaf.md @@ -1,6 +1,10 @@ -# Sourdough Table Loaf +--- +title: "Sourdough Table Loaf" +date: 2021-03-21 +tags: ['bread', 'sourdough'] +--- -![Sourdough Table Loaf](pix/sourdough-loaf.webp) +![Sourdough Table Loaf](/pix/sourdough-loaf.webp) If you've never made your own sourdough bread, it can be intimidating! But I believe it is absolutely worth the time and effort. You can look up videos to explain some of the methods listed, such as the stretch and fold, or different ways to shape your loaf. Fermenting grains has been a tradition of home cooking for millennia, and an art only lost in recent years. Fermenting grains has numerous health benefits, is much easier to digest, and even contains natural preservatives. You can get a sourdough starter from any bakery in your area, or make your own from scratch! Also, if you don't have a scale, get one! @@ -38,5 +42,3 @@ If you've never made your own sourdough bread, it can be intimidating! But I bel ## Contribution - Quinn & Alison - -;tags: bread sourdough diff --git a/src/sourdough-potato-bread.md b/content/sourdough-potato-bread.md similarity index 78% rename from src/sourdough-potato-bread.md rename to content/sourdough-potato-bread.md index dcbd231..88751b7 100644 --- a/src/sourdough-potato-bread.md +++ b/content/sourdough-potato-bread.md @@ -1,6 +1,10 @@ -# Potato sourdough bread +--- +title: "Potato sourdough bread" +date: 2021-03-23 +tags: ['sourdough', 'bread', 'potato'] +--- -![Potato sourdough bread](pix/sourdough-potato-bread.webp) +![Potato sourdough bread](/pix/sourdough-potato-bread.webp) - ⏲️ Prep time: 15 min - 🍳 Cook time: 45 min @@ -28,5 +32,3 @@ ## Contribution SirStart - -;tags: sourdough bread potato \ No newline at end of file diff --git a/src/sourdough-starter.md b/content/sourdough-starter.md similarity index 94% rename from src/sourdough-starter.md rename to content/sourdough-starter.md index af41318..f1cc57c 100644 --- a/src/sourdough-starter.md +++ b/content/sourdough-starter.md @@ -1,4 +1,8 @@ -# Sourdough starter +--- +title: "Sourdough starter" +date: 2021-03-23 +tags: ['bread', 'sourdough', 'basic'] +--- This recipe contains instructions for sourdough starter needed for all sourdough breads. The starter can be done with either wheat flour or rye flour for rye breads. Prefer organic flours as they contain most wild yeasts. @@ -22,5 +26,3 @@ This recipe contains instructions for sourdough starter needed for all sourdough ## Contribution - Vili Kangas - -;tags: bread sourdough basic diff --git a/src/southern-biscuits.md b/content/southern-biscuits.md similarity index 89% rename from src/southern-biscuits.md rename to content/southern-biscuits.md index 1a24e29..c103dbb 100644 --- a/src/southern-biscuits.md +++ b/content/southern-biscuits.md @@ -1,4 +1,8 @@ -# Southern Biscuits +--- +title: "Southern Biscuits" +date: 2021-03-23 +tags: ['american', 'southern'] +--- This is Southern (American) Style Biscuits. @@ -28,5 +32,3 @@ This is Southern (American) Style Biscuits. ## Contribution - Ian S. Pringle -- [website](https://0x44.pw) - -;tags: american southern diff --git a/src/spaghetti-all-amatriciana.md b/content/spaghetti-all-amatriciana.md similarity index 89% rename from src/spaghetti-all-amatriciana.md rename to content/spaghetti-all-amatriciana.md index ec757e3..ac5eeb0 100644 --- a/src/spaghetti-all-amatriciana.md +++ b/content/spaghetti-all-amatriciana.md @@ -1,8 +1,12 @@ -# Spaghetti all'amatriciana +--- +title: "Spaghetti all'amatriciana" +date: 2021-03-24 +tags: ['italian', 'pasta'] +--- Ignore the fact that those in the photo are pennette and not spaghetti, that's all I had that day. -![Jebusthebus](pix/spaghetti-all-amatriciana.webp) +![Jebusthebus](/pix/spaghetti-all-amatriciana.webp) - ⏲️ Prep time: 5 min - 🍳 Cook time: 25 min @@ -32,5 +36,3 @@ Ignore the fact that those in the photo are pennette and not spaghetti, that's a ## Contribution - Jebusthebus - -;tags: italian pasta diff --git a/src/spaghetti-alla-puttanesca.md b/content/spaghetti-alla-puttanesca.md similarity index 93% rename from src/spaghetti-alla-puttanesca.md rename to content/spaghetti-alla-puttanesca.md index e78852d..66af71f 100644 --- a/src/spaghetti-alla-puttanesca.md +++ b/content/spaghetti-alla-puttanesca.md @@ -1,4 +1,8 @@ -# Spaghetti alla puttanesca +--- +title: "Spaghetti alla puttanesca" +date: 2021-03-21 +tags: ['italian', 'pasta'] +--- Easy and delicious italian dish. Spaghetti alla puttanesca entice you for the savory sauce that surrounds them: peeled tomatoes, capers, "Gaeta" olives, and anchovy fillets give these spaghetti a unique taste. - ⏲️Prep time: ~18 min @@ -36,5 +40,3 @@ Easy and delicious italian dish. Spaghetti alla puttanesca entice you for the sa ## Contribution - Postbellum [GitHub](https://github.com/postbellum) - -;tags: italian pasta diff --git a/src/spaghetti-and-meatballs.md b/content/spaghetti-and-meatballs.md similarity index 95% rename from src/spaghetti-and-meatballs.md rename to content/spaghetti-and-meatballs.md index 48102f9..7f2aab1 100644 --- a/src/spaghetti-and-meatballs.md +++ b/content/spaghetti-and-meatballs.md @@ -1,4 +1,8 @@ -# Spaghetti and Meatballs +--- +title: "Spaghetti and Meatballs" +date: 2021-03-13 +tags: ['italian', 'pasta', 'beef', 'pork', 'cheesefare'] +--- - ⏲️Prep time: 20 min - 🍳 Cook time: 40 min @@ -78,5 +82,3 @@ ## Contribution - ClosedGL - [GitHub](https://github.com/ClosedGL2) - -;tags: italian pasta beef pork cheesefare diff --git a/src/spanish-tortilla.md b/content/spanish-tortilla.md similarity index 91% rename from src/spanish-tortilla.md rename to content/spanish-tortilla.md index b2c5816..865ab13 100644 --- a/src/spanish-tortilla.md +++ b/content/spanish-tortilla.md @@ -1,6 +1,10 @@ -# Spanish Tortilla +--- +title: "Spanish Tortilla" +date: 2021-03-21 +tags: ['spanish', 'potato', 'eggs', 'tortilla'] +--- -![Spanish Tortilla](pix/spanish-tortilla.webp) +![Spanish Tortilla](/pix/spanish-tortilla.webp) - ⏲️ Prep time: 5 min - 🍳 Cook time: 35 min @@ -34,5 +38,3 @@ ## Contribution OctopusOnFire - [Minds](https://www.minds.com/OctopusOnFire/) - -;tags: spanish potato eggs tortilla diff --git a/src/spatchcock-chicken.md b/content/spatchcock-chicken.md similarity index 93% rename from src/spatchcock-chicken.md rename to content/spatchcock-chicken.md index 2bdb27b..15df281 100644 --- a/src/spatchcock-chicken.md +++ b/content/spatchcock-chicken.md @@ -1,4 +1,8 @@ -# Spatchcock Chicken +--- +title: "Spatchcock Chicken" +date: 2021-03-15 +tags: ['basic', 'bread', 'chicken'] +--- ## Ingredients @@ -20,5 +24,3 @@ ## Contribution Front3ndNinja - [Website](https://github.com/Front3ndNinja) - -;tags: basic bread chicken \ No newline at end of file diff --git a/src/spicy-mayo.md b/content/spicy-mayo.md similarity index 86% rename from src/spicy-mayo.md rename to content/spicy-mayo.md index 20ba8a3..01198c5 100644 --- a/src/spicy-mayo.md +++ b/content/spicy-mayo.md @@ -1,4 +1,8 @@ -# Spicy Mayo +--- +title: "Spicy Mayo" +date: 2021-03-30 +tags: ['basic', 'sauce', 'japanese'] +--- A simple sauce that is at almost every sushi bar in the United States. @@ -23,5 +27,3 @@ This is just a basic guide, adapt this recipe to your liking. ## Contribution - scary90 - -;tags: basic sauce japanese diff --git a/src/sticky-porkchops.md b/content/sticky-porkchops.md similarity index 93% rename from src/sticky-porkchops.md rename to content/sticky-porkchops.md index ad2800c..9762c72 100644 --- a/src/sticky-porkchops.md +++ b/content/sticky-porkchops.md @@ -1,4 +1,8 @@ -# Sticky Porkchops +--- +title: "Sticky Porkchops" +date: 2021-03-12 +tags: ['japanese', 'pork', 'soup'] +--- Simple chinese inspired sticky porkchops. @@ -28,5 +32,3 @@ Simple chinese inspired sticky porkchops. ## Contribution - Jake Keast - [website](https://jakekeast.xyz), xmr: `8BBKCQbL1xSKS8fWE257cVBzerYu1censWYUCncLppo6MPLd3u59ejYE9XMdW4CNL3DGgf1vjG5SHGDEJV95xtxW2wsaANo` - -;tags: japanese pork soup diff --git a/src/stir-fried-chicken-with-an-orange-sauce.md b/content/stir-fried-chicken-with-an-orange-sauce.md similarity index 93% rename from src/stir-fried-chicken-with-an-orange-sauce.md rename to content/stir-fried-chicken-with-an-orange-sauce.md index 99eefd8..5e2f1c2 100644 --- a/src/stir-fried-chicken-with-an-orange-sauce.md +++ b/content/stir-fried-chicken-with-an-orange-sauce.md @@ -1,4 +1,8 @@ -# Stir Fried Chicken with an Orange Sauce +--- +title: "Stir Fried Chicken with an Orange Sauce" +date: 2021-03-16 +tags: ['asian', 'chicken'] +--- I could have called this Orange Chicken but I feel like some people wouldn't classify my recipe that way. @@ -26,5 +30,3 @@ I could have called this Orange Chicken but I feel like some people wouldn't cla ## Contribution - Jacob Smith - [website](https://jacobwsmith.xyz) - -;tags: asian chicken diff --git a/src/stoemp.md b/content/stoemp.md similarity index 90% rename from src/stoemp.md rename to content/stoemp.md index 125516a..b0cda14 100644 --- a/src/stoemp.md +++ b/content/stoemp.md @@ -1,4 +1,8 @@ -# Stoemp +--- +title: "Stoemp" +date: 2021-03-21 +tags: ['belgian', 'potato'] +--- Mashed potatoes in Belgian style @@ -27,5 +31,3 @@ Mashed potatoes in Belgian style ## Contribution https://github.com/alpo - -;tags: belgian potato diff --git a/src/stoofvlees.md b/content/stoofvlees.md similarity index 96% rename from src/stoofvlees.md rename to content/stoofvlees.md index 9a23144..c94d096 100644 --- a/src/stoofvlees.md +++ b/content/stoofvlees.md @@ -1,4 +1,8 @@ -# Stoofvlees +--- +title: "Stoofvlees" +date: 2021-03-21 +tags: ['beef', 'stew', 'belgian'] +--- This is a traditional belgian stew made with cheap, though beef cuts, beer and onions. Traditionally eaten with fries and chicory salad. @@ -39,5 +43,3 @@ Traditionally eaten with fries and chicory salad. ## Contribution - Yiusa, eth `0x68f1317c6512f0267fa711cafb6c134ae968fa80` - -;tags: beef stew belgian diff --git a/src/stroganoff.md b/content/stroganoff.md similarity index 94% rename from src/stroganoff.md rename to content/stroganoff.md index 5d0fadc..f50afb4 100644 --- a/src/stroganoff.md +++ b/content/stroganoff.md @@ -1,4 +1,8 @@ -# Beef Stroganoff +--- +title: "Beef Stroganoff" +date: 2021-03-10 +tags: ['american', 'beef'] +--- This is American-style stroganoff. @@ -30,5 +34,3 @@ This is American-style stroganoff. ## Contribution - Luke Smith -- [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: american beef diff --git a/src/stuffed-round-squash.md b/content/stuffed-round-squash.md similarity index 77% rename from src/stuffed-round-squash.md rename to content/stuffed-round-squash.md index 77ee75c..c70a9aa 100644 --- a/src/stuffed-round-squash.md +++ b/content/stuffed-round-squash.md @@ -1,6 +1,10 @@ -# Stuffed Round Squash +--- +title: "Stuffed Round Squash" +date: 2021-03-13 +tags: ['supper', 'rice', 'vegetables', 'cheesefare', 'fasting'] +--- -![](pix/stuffed-round-squash-02.webp) +![](/pix/stuffed-round-squash-02.webp) Round Squash, Zucchini, or Courguettes can be served as main dish (2 servings per person) or as accompaniment. The amount of squash should be adjusted according to their size. This recipe uses ones the size of a fist. @@ -17,8 +21,8 @@ Round Squash, Zucchini, or Courguettes can be served as main dish (2 servings pe ## Directions -1. Cook the rice. This usually takes 20 minutes. In the meantime, cut the onion into small cubes, grate the carrot, and cut the squash in halves. Scoop the squash halves, and cut the core in small cubes. Save them for later. ![](pix/stuffed-round-squash-00.webp) -2. Strain the rice and let it cool. On an oiled pan, mix the onion, carrot and squash core, and cook them for 10 minutes. You may now add seasoning. ![](pix/stuffed-round-squash-01.webp) +1. Cook the rice. This usually takes 20 minutes. In the meantime, cut the onion into small cubes, grate the carrot, and cut the squash in halves. Scoop the squash halves, and cut the core in small cubes. Save them for later. ![](/pix/stuffed-round-squash-00.webp) +2. Strain the rice and let it cool. On an oiled pan, mix the onion, carrot and squash core, and cook them for 10 minutes. You may now add seasoning. ![](/pix/stuffed-round-squash-01.webp) 3. Place the squash halves facing down on a metal griddle in the oven. Add the rice to the vegetables, stir, and cook for 10 more minutes. 4. Flip the squash, stuff them with cheese and the vegetables mixture, and put them again in the oven for 10 minutes at max heat. 5. Serve. @@ -26,5 +30,3 @@ Round Squash, Zucchini, or Courguettes can be served as main dish (2 servings pe ## Contribution - Marco Fleres - -;tags: supper rice vegetables cheesefare fasting diff --git a/src/sunday-milkshake.md b/content/sunday-milkshake.md similarity index 88% rename from src/sunday-milkshake.md rename to content/sunday-milkshake.md index 7d995c6..771134d 100644 --- a/src/sunday-milkshake.md +++ b/content/sunday-milkshake.md @@ -1,6 +1,10 @@ -# Sunday Morning Milkshake +--- +title: "Sunday Morning Milkshake" +date: 2021-03-12 +tags: ['sweet', 'breakfast', 'drink', 'cheesefare'] +--- -![Sunday Morning Milkshake](pix/sunday-milkshake.webp) +![Sunday Morning Milkshake](/pix/sunday-milkshake.webp) A sweet and refreshing milkshake that barely requires any effort to make. You're not required to make it and drink it on Sunday, it was just almost a tradition @@ -37,5 +41,3 @@ Originally published at [https://www.yaroslavps.com/food/sunday-morning-milkshak - Yaroslav de la Peña Smirnov -- [website](https://www.yaroslavps.com/), [other website](https://saucesource.cc/), [donate](https://www.yaroslavps.com/donate) - -;tags: sweet breakfast drink cheesefare diff --git a/src/swedish-pancakes.md b/content/swedish-pancakes.md similarity index 84% rename from src/swedish-pancakes.md rename to content/swedish-pancakes.md index 84dd009..a5d581f 100644 --- a/src/swedish-pancakes.md +++ b/content/swedish-pancakes.md @@ -1,6 +1,10 @@ -# Swedish Pancakes +--- +title: "Swedish Pancakes" +date: 2021-03-21 +tags: ['breakfast', 'swedish', 'pancake'] +--- -![Swedish Pancakes](pix/swedish-pancakes-00.webp) +![Swedish Pancakes](/pix/swedish-pancakes-00.webp) - ⏲️ Prep time: 10 min - 🍳 Cook time: 30 min @@ -23,10 +27,8 @@ 4. When edges of pancake start to firm-up use spatula and free up the outside inch or two to achieve a clean removal for flipping later. 5. First side will take about a minute or more the second side will take half that time. Pick up at middle of pancake with spatula then place on plate and fold over. The pancake will then be four layers thick 10" x 2" long. Serve with syrup on top or anything you choose, my wife likes peanut butter and I prefer to spread a little butter on it before adding syrup. Maybe you prefer adding fruits of your choice. -![Swedish Pancakes](pix/swedish-pancakes-01.webp) +![Swedish Pancakes](/pix/swedish-pancakes-01.webp) ## Contribution - Matt Bogenhagen - -;tags: breakfast swedish pancake diff --git a/src/sweet-potato-fries.md b/content/sweet-potato-fries.md similarity index 88% rename from src/sweet-potato-fries.md rename to content/sweet-potato-fries.md index b6128e4..e2a14a8 100644 --- a/src/sweet-potato-fries.md +++ b/content/sweet-potato-fries.md @@ -1,6 +1,10 @@ -# Basic Sweet Potato Fries Recipe +--- +title: "Basic Sweet Potato Fries Recipe" +date: 2021-03-12 +tags: ['potato', 'snack', 'side', 'fasting'] +--- -![cooked sweet pototo fries in pan](pix/sweet-potato-fries.webp) +![cooked sweet pototo fries in pan](/pix/sweet-potato-fries.webp) A simple, tasty, and healthy carb based snack. @@ -31,5 +35,3 @@ A simple, tasty, and healthy carb based snack. ## Contribution Shane Kunz - [Website](https://shanekunz.com) - -;tags: potato snack side fasting diff --git a/src/taco-meat.md b/content/taco-meat.md similarity index 91% rename from src/taco-meat.md rename to content/taco-meat.md index b6657b3..e69fe46 100644 --- a/src/taco-meat.md +++ b/content/taco-meat.md @@ -1,4 +1,8 @@ -# Taco Meat +--- +title: "Taco Meat" +date: 2021-03-12 +tags: ['mexican', 'beef'] +--- ## Ingredients @@ -22,5 +26,3 @@ ## Contribution - Elias Howell -- [website](https://snarf.top) - -;tags: mexican beef diff --git a/src/tanzania-tea-with-milk.md b/content/tanzania-tea-with-milk.md similarity index 85% rename from src/tanzania-tea-with-milk.md rename to content/tanzania-tea-with-milk.md index a580b2b..d35543a 100644 --- a/src/tanzania-tea-with-milk.md +++ b/content/tanzania-tea-with-milk.md @@ -1,6 +1,10 @@ -# Tanzanian Tea w/ Milk +--- +title: "Tanzanian Tea w/ Milk" +date: 2021-04-20 +tags: ['drink', 'milk', 'quick'] +--- -![tea-n-milk](pix/tanzania-tea-with-milk-01.webp) +![tea-n-milk](/pix/tanzania-tea-with-milk-01.webp) This is a very traditional simple beverage from Tanzania, a country in East Africa. While I stayed there in Mwanza and Dar es Salaam, they would always have this option for breakfast (or in general). @@ -19,7 +23,7 @@ the box lol) ## Directions -![tea](pix/tanzania-tea-with-milk-02.webp) +![tea](/pix/tanzania-tea-with-milk-02.webp) 1. Bring some hot water to boil and seep the tea. Depending on how strong you like it, you can do this for up to 10 min at most. Be warned; typically black teas are very strong. @@ -29,5 +33,3 @@ Be warned; typically black teas are very strong. ## Contribution - extramundane (Ex) - [website](https://extramundane.xyz), [donate](https://extramundane.xyz/donate.html) - -;tags: drink milk quick diff --git a/src/tiroler-groestl.md b/content/tiroler-groestl.md similarity index 89% rename from src/tiroler-groestl.md rename to content/tiroler-groestl.md index a50607a..649ddc3 100644 --- a/src/tiroler-groestl.md +++ b/content/tiroler-groestl.md @@ -1,4 +1,8 @@ -# Tiroler Gröstl +--- +title: "Tiroler Gröstl" +date: 2021-03-09 +tags: ['austrian', 'bacon', 'potato'] +--- - ⏲️ Prep time: 15 min - 🍳 Cook time: 30 min @@ -29,5 +33,3 @@ ## Contribution - Peter Wilbrink -- [printplaatreparatie.nl](https://printplaatreparatie.nl) - -;tags: austrian bacon potato \ No newline at end of file diff --git a/src/tofu-stir-fry.md b/content/tofu-stir-fry.md similarity index 95% rename from src/tofu-stir-fry.md rename to content/tofu-stir-fry.md index 0f94b26..8252aa1 100644 --- a/src/tofu-stir-fry.md +++ b/content/tofu-stir-fry.md @@ -1,4 +1,8 @@ -# Tofu Stir Fry +--- +title: "Tofu Stir Fry" +date: 2021-03-23 +tags: ['tofu', 'fasting'] +--- A vegetarian dish that is easy to make and very flavorful. Goes well with rice or noodles @@ -36,5 +40,3 @@ Cooking time: ~10 to 20 minutes ## Contributors - [Kelvin Shadewing](https://odysee.com/@KelvinShadewing:d) - -;tags: tofu fasting diff --git a/src/tomato-and-grilled-paprika-soup.md b/content/tomato-and-grilled-paprika-soup.md similarity index 88% rename from src/tomato-and-grilled-paprika-soup.md rename to content/tomato-and-grilled-paprika-soup.md index 92bd4bf..6a398f0 100644 --- a/src/tomato-and-grilled-paprika-soup.md +++ b/content/tomato-and-grilled-paprika-soup.md @@ -1,4 +1,8 @@ -# Tomato and Grilled Bell Pepper soup +--- +title: "Tomato and Grilled Bell Pepper soup" +date: 2021-03-15 +tags: ['soup', 'cheesefare'] +--- - 🍳 Cook time: 30 min - 🍽️Servings:12 @@ -28,5 +32,3 @@ Can be prepared the night before and kept frozen for a week or two. ## Contribution - Thijs Wester - [website](https://twester.tk) - -;tags: soup cheesefare diff --git a/src/tomato-flavored-hamburger-macaroni.md b/content/tomato-flavored-hamburger-macaroni.md similarity index 88% rename from src/tomato-flavored-hamburger-macaroni.md rename to content/tomato-flavored-hamburger-macaroni.md index 7927e54..358d105 100644 --- a/src/tomato-flavored-hamburger-macaroni.md +++ b/content/tomato-flavored-hamburger-macaroni.md @@ -1,6 +1,10 @@ -# Tomato Flavored Hamburger and Macaroni +--- +title: "Tomato Flavored Hamburger and Macaroni" +date: 2021-03-14 +tags: ['beef', 'macaroni', 'supper'] +--- -![Tomato Flavored Hamburger and Macaroni](pix/tomato-flavored-hamburger-macaroni.webp) +![Tomato Flavored Hamburger and Macaroni](/pix/tomato-flavored-hamburger-macaroni.webp) This is a based, easy and relatively quick to make meal. Great for making in large batches with a big pot and eating throughout the week. @@ -46,5 +50,3 @@ This is a based, easy and relatively quick to make meal. Great for making in lar ## Contribution - Ryan Wilson - [website](https://rdwilson.xyz), [donate](https://rdwilson.xyz/donate.html) - -;tags: beef macaroni supper diff --git a/src/torrijas.md b/content/torrijas.md similarity index 89% rename from src/torrijas.md rename to content/torrijas.md index 1da445d..41a9b33 100644 --- a/src/torrijas.md +++ b/content/torrijas.md @@ -1,6 +1,10 @@ -# Torrijas +--- +title: "Torrijas" +date: 2021-03-30 +tags: ['spanish', 'dessert', 'quick', 'easter'] +--- -![Torrijas](pix/torrijas.webp) +![Torrijas](/pix/torrijas.webp) Torrijas are a spanish dessert traditionally eaten during the Holy Week (Easter). It is said they were first cooked using the leftovers from the Lent. @@ -32,5 +36,3 @@ It is said they were first cooked using the leftovers from the Lent. ## Contribution - **danoloan** - [webpage](https://danoloan.es) - -;tags: spanish dessert quick easter diff --git a/src/tortellini.md b/content/tortellini.md similarity index 87% rename from src/tortellini.md rename to content/tortellini.md index 0a813c9..4c00bbb 100644 --- a/src/tortellini.md +++ b/content/tortellini.md @@ -1,4 +1,8 @@ -# Tortellini +--- +title: "Tortellini" +date: 2021-03-12 +tags: ['italian', 'pasta', 'quick', 'cheesefare'] +--- ## Ingredients @@ -23,5 +27,3 @@ ## Contribution - Teo Dragovic - [website](https://teodragovic.com) - -;tags: italian pasta quick cheesefare diff --git a/src/tuhu.md b/content/tuhu.md similarity index 96% rename from src/tuhu.md rename to content/tuhu.md index c9f78be..b8be81b 100644 --- a/src/tuhu.md +++ b/content/tuhu.md @@ -1,4 +1,8 @@ -# Tuh'u +--- +title: "Tuh'u" +date: 2021-03-23 +tags: ['lamb', 'stew'] +--- Tuh'u (Akkadian for possibly "beetroot") is an ancient Mesopotamian spring festival dish, a lamb stew of sorts, extracted by historians at Yale Babylonian Collection from tablets from Babylonia, ca. 1740 BC. @@ -39,5 +43,3 @@ Yale Babylonian Collection from tablets from Babylonia, ca. 1740 BC. - Tasting History with Max Miller - [website](https://www.youtube.com/channel/UCsaGKqPZnGp_7N80hcHySGQ), [video about recipe](https://www.youtube.com/watch?v=7IYYhoO-hiY) - Holsterbau - [website](https://github.com/Holsterbau) - -;tags: lamb stew diff --git a/src/tuna-salad.md b/content/tuna-salad.md similarity index 82% rename from src/tuna-salad.md rename to content/tuna-salad.md index 08751a8..7fb7cab 100644 --- a/src/tuna-salad.md +++ b/content/tuna-salad.md @@ -1,6 +1,10 @@ -# Simple Tuna Salad +--- +title: "Simple Tuna Salad" +date: 2021-03-15 +tags: ['quick', 'basic', 'tuna', 'fish'] +--- -![Tuna Salad](pix/tuna-salad.webp) +![Tuna Salad](/pix/tuna-salad.webp) - ⏲️ Prep time: 5 min - 🍽️ Servings: 3 @@ -25,5 +29,3 @@ - scary90 - Tait Hoyem - [website](https://tait.tech) - -;tags: quick basic tuna fish diff --git a/src/tuna-sub.md b/content/tuna-sub.md similarity index 88% rename from src/tuna-sub.md rename to content/tuna-sub.md index 403cbd9..50a1f2c 100644 --- a/src/tuna-sub.md +++ b/content/tuna-sub.md @@ -1,4 +1,8 @@ -# Tuna Sub +--- +title: "Tuna Sub" +date: 2021-03-12 +tags: ['fish', 'sandwich', 'quick', 'cheesefare'] +--- Use the best tuna you can find. I like oil-packed but water is OK. Someone you know has a tuna salad recipe. @@ -26,5 +30,3 @@ Use the best tuna you can find. I like oil-packed but water is OK. Someone you k ## Contribution - I don't think you could call it that. - -;tags: fish sandwich quick cheesefare diff --git a/src/turkey-smoked.md b/content/turkey-smoked.md similarity index 92% rename from src/turkey-smoked.md rename to content/turkey-smoked.md index 3ae8687..80eeba0 100644 --- a/src/turkey-smoked.md +++ b/content/turkey-smoked.md @@ -1,8 +1,12 @@ -# Smoked Turkey +--- +title: "Smoked Turkey" +date: 2021-03-30 +tags: ['basic', 'american', 'turkey'] +--- Turkey, smoked on a charcoal grill -![Smoked Turkey](pix/turkey-smoked-1.webp) +![Smoked Turkey](/pix/turkey-smoked-1.webp) - ⏲️ Prep time: 120 min - 🍳 Cook time: 90-180 min @@ -35,5 +39,3 @@ Turkey, smoked on a charcoal grill ## Contribution - Daddy Warcrimes - [website](https://daddywarcrimes.blogspot.com/), [donate](https://daddywarcrimes.blogspot.com/2018/05/why-im-asking-for-money.html) - -;tags: basic american turkey diff --git a/src/turkish-yogurt-soup.md b/content/turkish-yogurt-soup.md similarity index 88% rename from src/turkish-yogurt-soup.md rename to content/turkish-yogurt-soup.md index c1159dc..b487882 100644 --- a/src/turkish-yogurt-soup.md +++ b/content/turkish-yogurt-soup.md @@ -1,4 +1,8 @@ -# Turkish Yogurt Soup +--- +title: "Turkish Yogurt Soup" +date: 2021-03-24 +tags: ['turkish', 'rice', 'soup', ''] +--- - ⏲️ Prep time: 15 min - 🍳 Cook time: 35 min @@ -29,5 +33,3 @@ ## Contribution - digi - [sourcehut](https://git.sr.ht/~digi/) - -;tags: turkish rice soup diff --git a/src/tuscan-style-pork-roast.md b/content/tuscan-style-pork-roast.md similarity index 94% rename from src/tuscan-style-pork-roast.md rename to content/tuscan-style-pork-roast.md index 39ee861..f752191 100644 --- a/src/tuscan-style-pork-roast.md +++ b/content/tuscan-style-pork-roast.md @@ -1,6 +1,10 @@ -# Tuscan Style Pork Roast +--- +title: "Tuscan Style Pork Roast" +date: 2021-03-10 +tags: ['italian', 'pork', 'roast'] +--- -![tuscan-style-pork-roast](pix/tuscan-style-pork-roast.webp) +![tuscan-style-pork-roast](/pix/tuscan-style-pork-roast.webp) An herbaceous pancetta stuffed pork roast with a crispy exterior. Finished with a lemon vinaigrette. Adapted from [Binging With Babish](https://www.youtube.com/watch?v=AgFaljoriYA) whose instructions are notoriously bad. @@ -43,5 +47,3 @@ I point out that ingredients need to be fresh, the olive oil high quality, the s ## Contribution - Tanner Wilcox – [gitlab](https://git.najer.info/twiclo), [donate](https://twil.cx/donate.txt) - -;tags: italian pork roast diff --git a/src/ukrainian-borscht.md b/content/ukrainian-borscht.md similarity index 93% rename from src/ukrainian-borscht.md rename to content/ukrainian-borscht.md index 6f00677..a3e08bb 100644 --- a/src/ukrainian-borscht.md +++ b/content/ukrainian-borscht.md @@ -1,6 +1,10 @@ -# Ukrainian Borscht +--- +title: "Ukrainian Borscht" +date: 2021-04-02 +tags: ['ukrainian', 'soup', 'beetroot', 'russian'] +--- -![Borscht in a bowl](pix/borscht.webp) +![Borscht in a bowl](/pix/borscht.webp) Borscht is a beet soup that originates from Ukraine and is common in Eastern Europe and North Asia. Depending on the recipe, borscht may be purely vegetarian; it may be served either hot or cold; and it may range from a hearty one-pot meal to a clear broth or a smooth drink. @@ -44,5 +48,3 @@ Depending on the recipe, borscht may be purely vegetarian; it may be served eith - **Stanislav** – [link](http://git.io/monesonn) - **Tait Hoyem** - [link](https://tait.tech) - -;tags: ukrainian soup beetroot russian diff --git a/src/ukrainian-vareniki.md b/content/ukrainian-vareniki.md similarity index 94% rename from src/ukrainian-vareniki.md rename to content/ukrainian-vareniki.md index a881bab..2a611ff 100644 --- a/src/ukrainian-vareniki.md +++ b/content/ukrainian-vareniki.md @@ -1,4 +1,8 @@ -# Ukrainian Vareniki +--- +title: "Ukrainian Vareniki" +date: 2021-04-06 +tags: ['ukrainian', 'dumpling', 'potato'] +--- (Vareniki/Dumplings) Vareniki are popular all over the world, but abroad they have different names. @@ -28,5 +32,3 @@ ## Contributors - [Vlad](https://github.com/VladPetryshyn) - -;tags: ukrainian dumpling potato diff --git a/src/yibin-burning-noodles.md b/content/yibin-burning-noodles.md similarity index 93% rename from src/yibin-burning-noodles.md rename to content/yibin-burning-noodles.md index 126b60a..f474267 100644 --- a/src/yibin-burning-noodles.md +++ b/content/yibin-burning-noodles.md @@ -1,4 +1,8 @@ -# Yibin Burning Noodles +--- +title: "Yibin Burning Noodles" +date: 2021-04-15 +tags: ['noodles', 'asian', 'chinese', 'spicy'] +--- This is a dry noodle dish from the town of Yibin in Sichuan, China. @@ -52,5 +56,3 @@ This is a dry noodle dish from the town of Yibin in Sichuan, China. ## Contribution - ThePademelon - -;tags: noodles asian chinese spicy diff --git a/src/yogurt.md b/content/yogurt.md similarity index 86% rename from src/yogurt.md rename to content/yogurt.md index 07b119b..c9cc5fb 100644 --- a/src/yogurt.md +++ b/content/yogurt.md @@ -1,4 +1,8 @@ -# Yogurt +--- +title: "Yogurt" +date: 2021-03-12 +tags: ['basic', 'breakfast', 'cheesefare'] +--- ## Ingredients @@ -21,5 +25,3 @@ ## Contribution - italian boy - -;tags: basic breakfast cheesefare diff --git a/src/yorkshire-puddings.md b/content/yorkshire-puddings.md similarity index 89% rename from src/yorkshire-puddings.md rename to content/yorkshire-puddings.md index ce720ea..cd3298b 100644 --- a/src/yorkshire-puddings.md +++ b/content/yorkshire-puddings.md @@ -1,6 +1,10 @@ -# Yorkshire Puddings +--- +title: "Yorkshire Puddings" +date: 2021-04-20 +tags: ['english', 'side'] +--- -![Yorkshire Puddings](pix/yorkshire-puddings.webp) +![Yorkshire Puddings](/pix/yorkshire-puddings.webp) Basically the northern England equivalent of the french pancake ( a means to make use of extra flour when you didn't have enough for bread ). They go well with Sunday Roasts. Puddings may be preserved in freezer for up to a month. @@ -31,5 +35,3 @@ Originally published at https://www.bbcgoodfood.com/recipes/best-yorkshire-puddi ## Contribution - siggines - [website](http://jacobsiggins.co.uk) - -;tags: english side diff --git a/src/zarangollo.md b/content/zarangollo.md similarity index 91% rename from src/zarangollo.md rename to content/zarangollo.md index ceffa9d..fc27437 100644 --- a/src/zarangollo.md +++ b/content/zarangollo.md @@ -1,4 +1,8 @@ -# Zarangollo +--- +title: "Zarangollo" +date: 2021-03-22 +tags: ['spanish', 'mediterranean', 'side', 'quick'] +--- Simple veggie starter/side dish from Murcia (Southeastern Spain) @@ -27,5 +31,3 @@ Simple veggie starter/side dish from Murcia (Southeastern Spain) ## Contribution Enrique: [github](https://github.com/enrique95) - -;tags: spanish mediterranean side quick diff --git a/src/zopf.md b/content/zopf.md similarity index 93% rename from src/zopf.md rename to content/zopf.md index 921fd9f..8d8f2a0 100644 --- a/src/zopf.md +++ b/content/zopf.md @@ -1,4 +1,8 @@ -# Zopf +--- +title: "Zopf" +date: 2021-03-15 +tags: ['swiss', 'bread', 'cheesefare'] +--- - ⏲️ Prep time: 30 min (plus one hour rising) - 🍳 Cook time: 30 min @@ -24,5 +28,3 @@ ## Contribution - Thijs Wester - [website](https://twester.tk) - -;tags: swiss bread cheesefare diff --git a/example.md b/example.md index 8ca4f52..7500c14 100644 --- a/example.md +++ b/example.md @@ -1,4 +1,8 @@ -# This is the dish title +--- +title: Dish Title +tags: ['beef', 'soup', 'german'] +date: 2022-02-20 +--- If necessary, provide a very brief description of the dish in one or two sentences. For most dishes, this will be unnecessary. @@ -42,5 +46,3 @@ If you add a Bitcoin/Monero address, put it in "code" between \`'s, like below. - Luke Smith - [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - Billy Smith - btc: `bc1q763s4ud0hgfa66ce64gyh6tsss49vyk5cqcm6w` - Sally Smith (photo credit) - [website](https://lukesmith.xyz), [donate](https://lukesmith.xyz/donate) - -;tags: tag1 tag2 tag3 (see README for tag guidelines) diff --git a/index.md b/index.md deleted file mode 100644 index ce1b20a..0000000 --- a/index.md +++ /dev/null @@ -1,23 +0,0 @@ -## About this site - -Founded to provide a simple online cookbook without ads and obese web design. -See the story of this site unfold in three videos: - -1. [A Demonstration of Modern Web Bloat](https://odysee.com/@Luke:7/a-demonstration-of-modern-web-bloat:f) -2. [The War against Web Bloat Continues](https://odysee.com/@Luke:7/the-war-against-web-bloat-continues...:a) -3. [SoyDevs DESTROYED Epic Style by Based Cooking](https://odysee.com/@Luke:7/soydevs-destroyed-epic-style-by-based:6) - -### It's easy to contribute! - -- Submit new recipes using git via [GitHub](https://github.com/lukesmithxyz/based.cooking). -- You may also improve recipes or add an image to those without them. -- Donate to the individual people who contribute pages whose names are at the bottom of each page. - -### Donate to the Based.Cooking maintenance fund - -We are funded by you only, not 20MB of ads or privacy-violating trackers per page. - -- ![BTC logo](pix/btc.svg) Bitcoin ([QR code](pix/bitcoin-based-cooking.png)): `bc1q763s4ud0hgfa66ce64gyh6tsss49vyk5cqcm6w` -- ![XMR Logo](pix/xmr.svg) Monero ([QR code](pix/monero-based-cooking.png)): `84N9N3DMWhQ9cstHwGEjo8hEvm9bjeYgjV5fLrGK6TmA9iVPjnU7NMUT7gyAc22UgGAVTCUgReQ1J67znhWP3L52Usfw6jg` -- [Donate to Luke](https://lukesmith.xyz/donate) and add a comment saying it's for Based.Cooking. -- Brave users may also donate BAT to this website. diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..9a2f93b --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,48 @@ +{{ partial "header.html" . }} + + +

🍲 Based Cooking 🍳

+ + +{{ partial "tagcloud.html" . }} + + + +

About this site

+ +

Founded to provide a simple online cookbook without ads and obese web design. +See the story of this site unfold in three videos:

+ +
    +
  1. A Demonstration of Moderno Web Bloat
  2. +
  3. The War Against Web Bloat Continues
  4. +
  5. SoyDevs DESTROYED Epic Style by Based Cooking
  6. +
+ +

It's easy to contribute!

+ + + +

Donate to the Based.Cooking maintenance fund

+ +We are funded by you only, not 20MB of ads or privacy-violating trackers per page. + + + +{{ partial "footer.html" . }} diff --git a/data/pix/aelplermagronen.webp b/static/pix/aelplermagronen.webp similarity index 100% rename from data/pix/aelplermagronen.webp rename to static/pix/aelplermagronen.webp diff --git a/data/pix/apple-pie.webp b/static/pix/apple-pie.webp similarity index 100% rename from data/pix/apple-pie.webp rename to static/pix/apple-pie.webp diff --git a/data/pix/apple-strudel-1.webp b/static/pix/apple-strudel-1.webp similarity index 100% rename from data/pix/apple-strudel-1.webp rename to static/pix/apple-strudel-1.webp diff --git a/data/pix/apple-strudel-2.webp b/static/pix/apple-strudel-2.webp similarity index 100% rename from data/pix/apple-strudel-2.webp rename to static/pix/apple-strudel-2.webp diff --git a/data/pix/arroz-chaufa-1.webp b/static/pix/arroz-chaufa-1.webp similarity index 100% rename from data/pix/arroz-chaufa-1.webp rename to static/pix/arroz-chaufa-1.webp diff --git a/data/pix/arroz-chaufa-2.webp b/static/pix/arroz-chaufa-2.webp similarity index 100% rename from data/pix/arroz-chaufa-2.webp rename to static/pix/arroz-chaufa-2.webp diff --git a/data/pix/asian-style-chicken-sticky-sauce.webp b/static/pix/asian-style-chicken-sticky-sauce.webp similarity index 100% rename from data/pix/asian-style-chicken-sticky-sauce.webp rename to static/pix/asian-style-chicken-sticky-sauce.webp diff --git a/data/pix/assam-tea.webp b/static/pix/assam-tea.webp similarity index 100% rename from data/pix/assam-tea.webp rename to static/pix/assam-tea.webp diff --git a/data/pix/baked-mostaccioli-00.webp b/static/pix/baked-mostaccioli-00.webp similarity index 100% rename from data/pix/baked-mostaccioli-00.webp rename to static/pix/baked-mostaccioli-00.webp diff --git a/data/pix/baked-mostaccioli-01.webp b/static/pix/baked-mostaccioli-01.webp similarity index 100% rename from data/pix/baked-mostaccioli-01.webp rename to static/pix/baked-mostaccioli-01.webp diff --git a/data/pix/baked-pasta-with-broccoli.webp b/static/pix/baked-pasta-with-broccoli.webp similarity index 100% rename from data/pix/baked-pasta-with-broccoli.webp rename to static/pix/baked-pasta-with-broccoli.webp diff --git a/data/pix/banana-muffins.webp b/static/pix/banana-muffins.webp similarity index 100% rename from data/pix/banana-muffins.webp rename to static/pix/banana-muffins.webp diff --git a/data/pix/beef-goulash.webp b/static/pix/beef-goulash.webp similarity index 100% rename from data/pix/beef-goulash.webp rename to static/pix/beef-goulash.webp diff --git a/data/pix/beef-kidney.webP b/static/pix/beef-kidney.webp similarity index 100% rename from data/pix/beef-kidney.webP rename to static/pix/beef-kidney.webp diff --git a/data/pix/bitcoin-based-cooking.png b/static/pix/bitcoin-based-cooking.png similarity index 100% rename from data/pix/bitcoin-based-cooking.png rename to static/pix/bitcoin-based-cooking.png diff --git a/data/pix/bolognese-sauce-1.webp b/static/pix/bolognese-sauce-1.webp similarity index 100% rename from data/pix/bolognese-sauce-1.webp rename to static/pix/bolognese-sauce-1.webp diff --git a/data/pix/borscht.webp b/static/pix/borscht.webp similarity index 100% rename from data/pix/borscht.webp rename to static/pix/borscht.webp diff --git a/data/pix/btc.svg b/static/pix/btc.svg similarity index 100% rename from data/pix/btc.svg rename to static/pix/btc.svg diff --git a/data/pix/burger-dressing.webp b/static/pix/burger-dressing.webp similarity index 100% rename from data/pix/burger-dressing.webp rename to static/pix/burger-dressing.webp diff --git a/data/pix/butter-chicken-masala.webp b/static/pix/butter-chicken-masala.webp similarity index 100% rename from data/pix/butter-chicken-masala.webp rename to static/pix/butter-chicken-masala.webp diff --git a/data/pix/cacio-e-pepe.webp b/static/pix/cacio-e-pepe.webp similarity index 100% rename from data/pix/cacio-e-pepe.webp rename to static/pix/cacio-e-pepe.webp diff --git a/data/pix/carbonara.webp b/static/pix/carbonara.webp similarity index 100% rename from data/pix/carbonara.webp rename to static/pix/carbonara.webp diff --git a/data/pix/cheesy-meatballs.webp b/static/pix/cheesy-meatballs.webp similarity index 100% rename from data/pix/cheesy-meatballs.webp rename to static/pix/cheesy-meatballs.webp diff --git a/data/pix/chicken-pasta-casserole.webp b/static/pix/chicken-pasta-casserole.webp similarity index 100% rename from data/pix/chicken-pasta-casserole.webp rename to static/pix/chicken-pasta-casserole.webp diff --git a/data/pix/chocolate-chip-cookies.webp b/static/pix/chocolate-chip-cookies.webp similarity index 100% rename from data/pix/chocolate-chip-cookies.webp rename to static/pix/chocolate-chip-cookies.webp diff --git a/data/pix/cinque-pi.webp b/static/pix/cinque-pi.webp similarity index 100% rename from data/pix/cinque-pi.webp rename to static/pix/cinque-pi.webp diff --git a/data/pix/collard-greens-with-smoked-duck-and-parsnips.webp b/static/pix/collard-greens-with-smoked-duck-and-parsnips.webp similarity index 100% rename from data/pix/collard-greens-with-smoked-duck-and-parsnips.webp rename to static/pix/collard-greens-with-smoked-duck-and-parsnips.webp diff --git a/data/pix/country-crisp-cereals.webp b/static/pix/country-crisp-cereals.webp similarity index 100% rename from data/pix/country-crisp-cereals.webp rename to static/pix/country-crisp-cereals.webp diff --git a/data/pix/country-skillet.webp b/static/pix/country-skillet.webp similarity index 100% rename from data/pix/country-skillet.webp rename to static/pix/country-skillet.webp diff --git a/data/pix/crab-salad.webp b/static/pix/crab-salad.webp similarity index 100% rename from data/pix/crab-salad.webp rename to static/pix/crab-salad.webp diff --git a/data/pix/creamy-mashed-potatoes.webp b/static/pix/creamy-mashed-potatoes.webp similarity index 100% rename from data/pix/creamy-mashed-potatoes.webp rename to static/pix/creamy-mashed-potatoes.webp diff --git a/data/pix/croutons.webp b/static/pix/croutons.webp similarity index 100% rename from data/pix/croutons.webp rename to static/pix/croutons.webp diff --git a/data/pix/csalad.webp b/static/pix/csalad.webp similarity index 100% rename from data/pix/csalad.webp rename to static/pix/csalad.webp diff --git a/data/pix/danish-pancake.webp b/static/pix/danish-pancake.webp similarity index 100% rename from data/pix/danish-pancake.webp rename to static/pix/danish-pancake.webp diff --git a/data/pix/diannes-cornbread-salad.webp b/static/pix/diannes-cornbread-salad.webp similarity index 100% rename from data/pix/diannes-cornbread-salad.webp rename to static/pix/diannes-cornbread-salad.webp diff --git a/data/pix/french-toast.webp b/static/pix/french-toast.webp similarity index 100% rename from data/pix/french-toast.webp rename to static/pix/french-toast.webp diff --git a/data/pix/fried-anglerfish-fillet-00.webp b/static/pix/fried-anglerfish-fillet-00.webp similarity index 100% rename from data/pix/fried-anglerfish-fillet-00.webp rename to static/pix/fried-anglerfish-fillet-00.webp diff --git a/data/pix/fried-anglerfish-fillet-01.webp b/static/pix/fried-anglerfish-fillet-01.webp similarity index 100% rename from data/pix/fried-anglerfish-fillet-01.webp rename to static/pix/fried-anglerfish-fillet-01.webp diff --git a/data/pix/glutenfree-pfannkuchen.webp b/static/pix/glutenfree-pfannkuchen.webp similarity index 100% rename from data/pix/glutenfree-pfannkuchen.webp rename to static/pix/glutenfree-pfannkuchen.webp diff --git a/data/pix/guacamole.webp b/static/pix/guacamole.webp similarity index 100% rename from data/pix/guacamole.webp rename to static/pix/guacamole.webp diff --git a/data/pix/hearty-breakfast-oatmeal-00.webp b/static/pix/hearty-breakfast-oatmeal-00.webp similarity index 100% rename from data/pix/hearty-breakfast-oatmeal-00.webp rename to static/pix/hearty-breakfast-oatmeal-00.webp diff --git a/data/pix/hearty-breakfast-oatmeal-01.webp b/static/pix/hearty-breakfast-oatmeal-01.webp similarity index 100% rename from data/pix/hearty-breakfast-oatmeal-01.webp rename to static/pix/hearty-breakfast-oatmeal-01.webp diff --git a/data/pix/hoisin-pork-belly.webp b/static/pix/hoisin-pork-belly.webp similarity index 100% rename from data/pix/hoisin-pork-belly.webp rename to static/pix/hoisin-pork-belly.webp diff --git a/data/pix/italian-mulled-wine.webp b/static/pix/italian-mulled-wine.webp similarity index 100% rename from data/pix/italian-mulled-wine.webp rename to static/pix/italian-mulled-wine.webp diff --git a/data/pix/japanese-noodle-soup.webp b/static/pix/japanese-noodle-soup.webp similarity index 100% rename from data/pix/japanese-noodle-soup.webp rename to static/pix/japanese-noodle-soup.webp diff --git a/data/pix/lamb-biriyani.webp b/static/pix/lamb-biriyani.webp similarity index 100% rename from data/pix/lamb-biriyani.webp rename to static/pix/lamb-biriyani.webp diff --git a/data/pix/lasagna.webp b/static/pix/lasagna.webp similarity index 100% rename from data/pix/lasagna.webp rename to static/pix/lasagna.webp diff --git a/data/pix/lemon-and-oregano-chicken-traybake.webp b/static/pix/lemon-and-oregano-chicken-traybake.webp similarity index 100% rename from data/pix/lemon-and-oregano-chicken-traybake.webp rename to static/pix/lemon-and-oregano-chicken-traybake.webp diff --git a/data/pix/lentejas.webp b/static/pix/lentejas.webp similarity index 100% rename from data/pix/lentejas.webp rename to static/pix/lentejas.webp diff --git a/data/pix/lenten-chili.webp b/static/pix/lenten-chili.webp similarity index 100% rename from data/pix/lenten-chili.webp rename to static/pix/lenten-chili.webp diff --git a/data/pix/lenten-lentil-curry.webp b/static/pix/lenten-lentil-curry.webp similarity index 100% rename from data/pix/lenten-lentil-curry.webp rename to static/pix/lenten-lentil-curry.webp diff --git a/data/pix/limoncello.webp b/static/pix/limoncello.webp similarity index 100% rename from data/pix/limoncello.webp rename to static/pix/limoncello.webp diff --git a/data/pix/mapo-tofu-01.webp b/static/pix/mapo-tofu-01.webp similarity index 100% rename from data/pix/mapo-tofu-01.webp rename to static/pix/mapo-tofu-01.webp diff --git a/data/pix/mapo-tofu-02.webp b/static/pix/mapo-tofu-02.webp similarity index 100% rename from data/pix/mapo-tofu-02.webp rename to static/pix/mapo-tofu-02.webp diff --git a/data/pix/mayonnaise-or-aioli.webp b/static/pix/mayonnaise-or-aioli.webp similarity index 100% rename from data/pix/mayonnaise-or-aioli.webp rename to static/pix/mayonnaise-or-aioli.webp diff --git a/data/pix/meatloaf.webp b/static/pix/meatloaf.webp similarity index 100% rename from data/pix/meatloaf.webp rename to static/pix/meatloaf.webp diff --git a/data/pix/merchants-buckwheat.webp b/static/pix/merchants-buckwheat.webp similarity index 100% rename from data/pix/merchants-buckwheat.webp rename to static/pix/merchants-buckwheat.webp diff --git a/data/pix/monero-based-cooking.png b/static/pix/monero-based-cooking.png similarity index 100% rename from data/pix/monero-based-cooking.png rename to static/pix/monero-based-cooking.png diff --git a/data/pix/mortar-and-pestle.webp b/static/pix/mortar-and-pestle.webp similarity index 100% rename from data/pix/mortar-and-pestle.webp rename to static/pix/mortar-and-pestle.webp diff --git a/data/pix/naan-bread.webp b/static/pix/naan-bread.webp similarity index 100% rename from data/pix/naan-bread.webp rename to static/pix/naan-bread.webp diff --git a/data/pix/no-knead-bread-1.webp b/static/pix/no-knead-bread-1.webp similarity index 100% rename from data/pix/no-knead-bread-1.webp rename to static/pix/no-knead-bread-1.webp diff --git a/data/pix/no-knead-bread-2.webp b/static/pix/no-knead-bread-2.webp similarity index 100% rename from data/pix/no-knead-bread-2.webp rename to static/pix/no-knead-bread-2.webp diff --git a/data/pix/oatmeal-pancakes.webp b/static/pix/oatmeal-pancakes.webp similarity index 100% rename from data/pix/oatmeal-pancakes.webp rename to static/pix/oatmeal-pancakes.webp diff --git a/data/pix/pan-pizza.webp b/static/pix/pan-pizza.webp similarity index 100% rename from data/pix/pan-pizza.webp rename to static/pix/pan-pizza.webp diff --git a/data/pix/pan-seared-chicken.webp b/static/pix/pan-seared-chicken.webp similarity index 100% rename from data/pix/pan-seared-chicken.webp rename to static/pix/pan-seared-chicken.webp diff --git a/data/pix/pancake.webp b/static/pix/pancake.webp similarity index 100% rename from data/pix/pancake.webp rename to static/pix/pancake.webp diff --git a/data/pix/paneer-tikka-masala-00.webp b/static/pix/paneer-tikka-masala-00.webp similarity index 100% rename from data/pix/paneer-tikka-masala-00.webp rename to static/pix/paneer-tikka-masala-00.webp diff --git a/data/pix/paneer-tikka-masala-01.webp b/static/pix/paneer-tikka-masala-01.webp similarity index 100% rename from data/pix/paneer-tikka-masala-01.webp rename to static/pix/paneer-tikka-masala-01.webp diff --git a/data/pix/paneer-tikka-masala-02.webp b/static/pix/paneer-tikka-masala-02.webp similarity index 100% rename from data/pix/paneer-tikka-masala-02.webp rename to static/pix/paneer-tikka-masala-02.webp diff --git a/data/pix/parmesan-potatoes.webp b/static/pix/parmesan-potatoes.webp similarity index 100% rename from data/pix/parmesan-potatoes.webp rename to static/pix/parmesan-potatoes.webp diff --git a/data/pix/pasta-navy-style.webp b/static/pix/pasta-navy-style.webp similarity index 100% rename from data/pix/pasta-navy-style.webp rename to static/pix/pasta-navy-style.webp diff --git a/data/pix/pate-chinois.webp b/static/pix/pate-chinois.webp similarity index 100% rename from data/pix/pate-chinois.webp rename to static/pix/pate-chinois.webp diff --git a/data/pix/pho-soup.webp b/static/pix/pho-soup.webp similarity index 100% rename from data/pix/pho-soup.webp rename to static/pix/pho-soup.webp diff --git a/data/pix/quarkbaellchen.webp b/static/pix/quarkbaellchen.webp similarity index 100% rename from data/pix/quarkbaellchen.webp rename to static/pix/quarkbaellchen.webp diff --git a/data/pix/quesadilla.webp b/static/pix/quesadilla.webp similarity index 100% rename from data/pix/quesadilla.webp rename to static/pix/quesadilla.webp diff --git a/data/pix/ragu-napoletano-01.webp b/static/pix/ragu-napoletano-01.webp similarity index 100% rename from data/pix/ragu-napoletano-01.webp rename to static/pix/ragu-napoletano-01.webp diff --git a/data/pix/ragu-napoletano-02.webp b/static/pix/ragu-napoletano-02.webp similarity index 100% rename from data/pix/ragu-napoletano-02.webp rename to static/pix/ragu-napoletano-02.webp diff --git a/data/pix/ragu-napoletano-03.webp b/static/pix/ragu-napoletano-03.webp similarity index 100% rename from data/pix/ragu-napoletano-03.webp rename to static/pix/ragu-napoletano-03.webp diff --git a/data/pix/ravioli-01.webp b/static/pix/ravioli-01.webp similarity index 100% rename from data/pix/ravioli-01.webp rename to static/pix/ravioli-01.webp diff --git a/data/pix/ravioli-02.webp b/static/pix/ravioli-02.webp similarity index 100% rename from data/pix/ravioli-02.webp rename to static/pix/ravioli-02.webp diff --git a/data/pix/ravioli-03.webp b/static/pix/ravioli-03.webp similarity index 100% rename from data/pix/ravioli-03.webp rename to static/pix/ravioli-03.webp diff --git a/data/pix/ravioli-04.webp b/static/pix/ravioli-04.webp similarity index 100% rename from data/pix/ravioli-04.webp rename to static/pix/ravioli-04.webp diff --git a/data/pix/refried-beans.webp b/static/pix/refried-beans.webp similarity index 100% rename from data/pix/refried-beans.webp rename to static/pix/refried-beans.webp diff --git a/data/pix/roesti.webp b/static/pix/roesti.webp similarity index 100% rename from data/pix/roesti.webp rename to static/pix/roesti.webp diff --git a/data/pix/schnitzel.webp b/static/pix/schnitzel.webp similarity index 100% rename from data/pix/schnitzel.webp rename to static/pix/schnitzel.webp diff --git a/data/pix/shakshouka-01.webp b/static/pix/shakshouka-01.webp similarity index 100% rename from data/pix/shakshouka-01.webp rename to static/pix/shakshouka-01.webp diff --git a/data/pix/shakshouka-02.webp b/static/pix/shakshouka-02.webp similarity index 100% rename from data/pix/shakshouka-02.webp rename to static/pix/shakshouka-02.webp diff --git a/data/pix/soleier.webp b/static/pix/soleier.webp similarity index 100% rename from data/pix/soleier.webp rename to static/pix/soleier.webp diff --git a/data/pix/sourdough-bread-with-seeds-and-grains.webp b/static/pix/sourdough-bread-with-seeds-and-grains.webp similarity index 100% rename from data/pix/sourdough-bread-with-seeds-and-grains.webp rename to static/pix/sourdough-bread-with-seeds-and-grains.webp diff --git a/data/pix/sourdough-loaf.webp b/static/pix/sourdough-loaf.webp similarity index 100% rename from data/pix/sourdough-loaf.webp rename to static/pix/sourdough-loaf.webp diff --git a/data/pix/sourdough-potato-bread.webp b/static/pix/sourdough-potato-bread.webp similarity index 100% rename from data/pix/sourdough-potato-bread.webp rename to static/pix/sourdough-potato-bread.webp diff --git a/data/pix/spaghetti-all-amatriciana.webp b/static/pix/spaghetti-all-amatriciana.webp similarity index 100% rename from data/pix/spaghetti-all-amatriciana.webp rename to static/pix/spaghetti-all-amatriciana.webp diff --git a/data/pix/spanish-tortilla.webp b/static/pix/spanish-tortilla.webp similarity index 100% rename from data/pix/spanish-tortilla.webp rename to static/pix/spanish-tortilla.webp diff --git a/data/pix/stuffed-round-squash-00.webp b/static/pix/stuffed-round-squash-00.webp similarity index 100% rename from data/pix/stuffed-round-squash-00.webp rename to static/pix/stuffed-round-squash-00.webp diff --git a/data/pix/stuffed-round-squash-01.webp b/static/pix/stuffed-round-squash-01.webp similarity index 100% rename from data/pix/stuffed-round-squash-01.webp rename to static/pix/stuffed-round-squash-01.webp diff --git a/data/pix/stuffed-round-squash-02.webp b/static/pix/stuffed-round-squash-02.webp similarity index 100% rename from data/pix/stuffed-round-squash-02.webp rename to static/pix/stuffed-round-squash-02.webp diff --git a/data/pix/sunday-milkshake.webp b/static/pix/sunday-milkshake.webp similarity index 100% rename from data/pix/sunday-milkshake.webp rename to static/pix/sunday-milkshake.webp diff --git a/data/pix/swedish-pancakes-00.webp b/static/pix/swedish-pancakes-00.webp similarity index 100% rename from data/pix/swedish-pancakes-00.webp rename to static/pix/swedish-pancakes-00.webp diff --git a/data/pix/swedish-pancakes-01.webp b/static/pix/swedish-pancakes-01.webp similarity index 100% rename from data/pix/swedish-pancakes-01.webp rename to static/pix/swedish-pancakes-01.webp diff --git a/data/pix/sweet-potato-fries.webp b/static/pix/sweet-potato-fries.webp similarity index 100% rename from data/pix/sweet-potato-fries.webp rename to static/pix/sweet-potato-fries.webp diff --git a/data/pix/tanzania-tea-with-milk-01.webp b/static/pix/tanzania-tea-with-milk-01.webp similarity index 100% rename from data/pix/tanzania-tea-with-milk-01.webp rename to static/pix/tanzania-tea-with-milk-01.webp diff --git a/data/pix/tanzania-tea-with-milk-02.webp b/static/pix/tanzania-tea-with-milk-02.webp similarity index 100% rename from data/pix/tanzania-tea-with-milk-02.webp rename to static/pix/tanzania-tea-with-milk-02.webp diff --git a/data/pix/tomato-flavored-hamburger-macaroni.webp b/static/pix/tomato-flavored-hamburger-macaroni.webp similarity index 100% rename from data/pix/tomato-flavored-hamburger-macaroni.webp rename to static/pix/tomato-flavored-hamburger-macaroni.webp diff --git a/data/pix/torrijas.webp b/static/pix/torrijas.webp similarity index 100% rename from data/pix/torrijas.webp rename to static/pix/torrijas.webp diff --git a/data/pix/tuna-salad.webp b/static/pix/tuna-salad.webp similarity index 100% rename from data/pix/tuna-salad.webp rename to static/pix/tuna-salad.webp diff --git a/data/pix/turkey-smoked-1.webp b/static/pix/turkey-smoked-1.webp similarity index 100% rename from data/pix/turkey-smoked-1.webp rename to static/pix/turkey-smoked-1.webp diff --git a/data/pix/tuscan-style-pork-roast.webp b/static/pix/tuscan-style-pork-roast.webp similarity index 100% rename from data/pix/tuscan-style-pork-roast.webp rename to static/pix/tuscan-style-pork-roast.webp diff --git a/data/pix/xmr.svg b/static/pix/xmr.svg similarity index 100% rename from data/pix/xmr.svg rename to static/pix/xmr.svg diff --git a/data/pix/yorkshire-puddings.webp b/static/pix/yorkshire-puddings.webp similarity index 100% rename from data/pix/yorkshire-puddings.webp rename to static/pix/yorkshire-puddings.webp diff --git a/data/style.css b/static/style.css similarity index 73% rename from data/style.css rename to static/style.css index c43f498..dbadbcf 100644 --- a/data/style.css +++ b/static/style.css @@ -1,7 +1,7 @@ body { background: #151515 ; color: #ccc ; - max-width: 800px ; + max-width: 850px ; margin: auto ; padding: 0 16px ; margin-bottom: 500px ; @@ -40,32 +40,19 @@ code { color: lime ; } -img[alt="BTC logo"], +.taglist { + text-align: center ; + margin-bottom: 2em ; + margin-top: 2em ; +} + +img[alt="BTC Logo"], img[alt="XMR Logo"] { max-width: 1em ; max-height: 1em ; display: inline ; } -@media (prefers-color-scheme: light) { - body { - background: white ; - color: black ; - } - a { - color: blue ; - } - a:visited { - color: purple ; - } - h2 { - color: inherit ; - } - code { - color: forestgreen ; - } -} - @media print { a[href] { text-decoration: none ; diff --git a/templates/article_entry.html b/templates/article_entry.html deleted file mode 100644 index 4c149eb..0000000 --- a/templates/article_entry.html +++ /dev/null @@ -1 +0,0 @@ -
  • $TITLE
  • diff --git a/templates/article_footer.html b/templates/article_footer.html deleted file mode 100644 index 58af3ce..0000000 --- a/templates/article_footer.html +++ /dev/null @@ -1 +0,0 @@ -

    Recipe posted on: $DATE_POSTED, last edited on: $DATE_EDITED, written by: $AUTHOR

    diff --git a/templates/article_header.html b/templates/article_header.html deleted file mode 100644 index afdbcac..0000000 --- a/templates/article_header.html +++ /dev/null @@ -1 +0,0 @@ -
    diff --git a/templates/article_list_footer.html b/templates/article_list_footer.html deleted file mode 100644 index 3d3a44c..0000000 --- a/templates/article_list_footer.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/templates/article_list_header.html b/templates/article_list_header.html deleted file mode 100644 index e9a20ee..0000000 --- a/templates/article_list_header.html +++ /dev/null @@ -1,2 +0,0 @@ -

    Recipes

    -