Skip to content

Commit

Permalink
bundt cake
Browse files Browse the repository at this point in the history
  • Loading branch information
dhonus committed Oct 17, 2023
1 parent 8048d33 commit bbb407d
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 8 deletions.
6 changes: 3 additions & 3 deletions assets/style.sass
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ div.flex-left
margin: .3rem 0 0 0

div.recipe
width: 70%
width: 80%
margin: 2rem auto
background: #f5f4ee
padding: 1rem
padding: .6rem
border-radius: 7px
border: 1px solid silver
p:first-of-type
Expand Down Expand Up @@ -299,7 +299,7 @@ article.split-me
main
width: 90%
div.recipe
width: 80%
width: 95%

@media screen and (max-width: 1000px)
body
Expand Down
Binary file added content/posts/sweet/bundt cake/cover.webp
Binary file not shown.
Binary file added content/posts/sweet/bundt cake/detail.webp
Binary file not shown.
41 changes: 41 additions & 0 deletions content/posts/sweet/bundt cake/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: "Basic bundt cake"
date: 2023-10-17T00:00:00Z
draft: false
tags: ["czech", "baked", "chocolate"]
categories: ["🍬Sweet"]
---

In my inevitable descent into becoming a housewife I have turned to the humble marble bundt cake. It's a fairy typical dessert to eat in the Czech Republic and I haven't had it in years. Hence, I present a recipe for this delicious staple of the mundane Sunday family occasion. Loosely inspired by [this recipe](https://web.archive.org/web/20230401104615/https://plantifulbakery.com/cs/vegan-mramorova-babovka/).

![](detail.webp)

<div class="recipe">
Prep time: 15 minutes

Cooking time: 45 minutes

### Ingredients for 4 medium pancakes
- [ ] 300g all purpose flour
- [ ] 150g white sugar (yeah it's a lot)
- [ ] 200g vegan yoghurt
- [ ] 100ml plant-based milk
- [ ] 2 tablespoons baking powder
- [ ] 1 tablespoon baking soda
- [ ] 120g neutral oil
- [ ] juice of 1/2 lemon / vinegar
- [ ] 15g cocoa powder
### Optional
- [ ] confectioners' sugar to decorate

### Steps
1. Preheat the oven to 180°C
2. Mix the dry ingredients in a bowl (flour, sugar, baking powder, baking soda)
3. Add the wet ingredients (yoghurt, milk, oil, lemon juice) to a separate bowl and mix
4. Sift the dry ingredients into the wet ingredients and mix until combined
5. Pour about half of the batter into a separate bowl and mix in the cocoa powder
6. Grease a bundt cake form with oil, add some flour to coat the oil and pour in the batter alternating between the white and the chocolate batter in random patterns
7. Take a skewer and swirl it through the batter to create a marble effect
8. Bake for 45 minutes or until a skewer inserted into the cake comes out clean (I would start to watch it after ~35 minutes)

</div>
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ div.flex-left {
margin: .3rem 0 0 0; }

div.recipe {
width: 70%;
width: 80%;
margin: 2rem auto;
background: #f5f4ee;
padding: 1rem;
padding: .6rem;
border-radius: 7px;
border: 1px solid silver; }
div.recipe p:first-of-type {
Expand Down Expand Up @@ -295,7 +295,7 @@ article.split-me {
body main {
width: 90%; }
div.recipe {
width: 80%; } }
width: 95%; } }

@media screen and (max-width: 1000px) {
body {
Expand Down
2 changes: 1 addition & 1 deletion themes/bean/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{ end }}
</header>
<div class="category_container">
{{range ($.Site.GetPage "taxonomyTerm" "categories").Pages.ByWeight }}
{{range ($.Site.GetPage "taxonomyTerm" "categories").Pages.ByTitle}}
{{ if ne .Name "Oatmeal" }}
<h2>{{ .Title }}</h2>

Expand Down
2 changes: 1 addition & 1 deletion themes/bean/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h3>{{.Title}} | {{ .Site.Title }}</h3></a>
{{ $text }}
</a>
{{ end }}
{{range ($.Site.GetPage "taxonomyTerm" "categories").Pages.Reverse }}
{{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
</span>
Expand Down

0 comments on commit bbb407d

Please sign in to comment.