logo

Grimgrains

[mirror] Plant-based cooking website <https://grimgrains.com/>
commit: 08b5b24fea8670b89fe8e2f21079fa20fc12a124
parent 966b3fcbbba3e965ae99e2bca91cff24fde9a993
Author: microlith57 <microlith57@gmail.com>
Date:   Fri, 28 Jun 2019 16:39:13 +1200

Merge remote-tracking branch 'hundredrabbits/master'


Diffstat:

Mmedia/.DS_Store0
Mmedia/recipes/no.knead.bread.1.jpg0
Mmedia/recipes/scrambled.chickpeas.3.jpg0
Mmedia/recipes/seitan.2.jpg0
Mmedia/recipes/seitan.3.jpg0
Mscripts/database/recipes.ndtl5+++--
Mscripts/templates/home.js1+
7 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/media/.DS_Store b/media/.DS_Store Binary files differ. diff --git a/media/recipes/no.knead.bread.1.jpg b/media/recipes/no.knead.bread.1.jpg Binary files differ. diff --git a/media/recipes/scrambled.chickpeas.3.jpg b/media/recipes/scrambled.chickpeas.3.jpg Binary files differ. diff --git a/media/recipes/seitan.2.jpg b/media/recipes/seitan.2.jpg Binary files differ. diff --git a/media/recipes/seitan.3.jpg b/media/recipes/seitan.3.jpg Binary files differ. diff --git a/scripts/database/recipes.ndtl b/scripts/database/recipes.ndtl @@ -1699,6 +1699,7 @@ HIJIKI SOBA TAGS pasta TIME : 40 + HIDE : yes SERV : 2 portions DESC & After Japan opened itself to the world, Japanese cooks began to adapt western dishes in their own style. For instance in the west, people use ketchup as a condiment, but the Japanese use it as a base for tomato sauces. Spaghetti naporitan was created just after World War II, after Shigetada (the head chef at the Hotel New Grand in Yokohama) saw occupying soldiers eating it. Nowadays, you can find spaghetti seasoned with soy sauce, and served with seaweed. @@ -1888,8 +1889,8 @@ CORN DUMPLINGS & Masa is corn that is simmered and ground into a paste. It's the base for many recipes, you can make Mexican-style tortillas with it, that, or you can use it to make dumplings! I don't have access to fresh corn, nor do I have the space or the time to make my own masa, but I used polenta ({{corn semolina}}) instead and it worked! The only difference is that you need to add boiling water so you can roll the mixture into balls. If you were to use masa, you wouldn't need the added moisture. & The texture of the dumplings is fun and chewy. The outside is soft, but the inside is like that of dense cornbread. {*Recommendations*} - & Devine & I enjoy eating it with tomato sauce or with a spicy apricot sauce. - & Instead of apricot jam, you can add apricot juice to the mix (orange will taste wonderful too). I added jam because I didn't have any juice on the boat, and besides, it works well in this recipe. Enjoy! + & Devine & I enjoy eating it with tomato sauce or with a spicy apricot sauce. Instead of apricot jam, you can add apricot juice to the mix (orange will taste wonderful too). I added jam because I didn't have any juice on the boat, and besides, it works well in this recipe. + & Adding extra spices, like cumin, chili flakes and turmeric will add a nice flavour to the dumpling mix. INST Preparation - Mix {_1 cup_} {{corn semolina}}, {_1/4 cup_} {{all purpose flour}}, {_1/2 tsp_} {{baking soda}}, {_1 tsp_} {{baking powder}}, and {_1/2 tsp_} of {{salt}}. Stir until well mixed. diff --git a/scripts/templates/home.js b/scripts/templates/home.js @@ -97,6 +97,7 @@ function HomeTemplate (id, rect) { html += "<ul style='margin-bottom:15px'>" for (id in recipes) { let recipe = recipes[id] + if(recipe.HIDE){ continue; } html += `<li><a href="#${recipe.name.to_url()}" onclick="Ø('query').bang('${recipe.name.capitalize()}')">${recipe.name.capitalize()}</a></li>` } html += '</ul>'