diff --git a/config.toml b/config.toml deleted file mode 100644 index 1bf2080..0000000 --- a/config.toml +++ /dev/null @@ -1,8 +0,0 @@ -baseURL = 'https://jtom38.github.io/cookbook/' -languageCode = 'en-us' -title = 'Cookbook' -theme = "hugo-theme-learn" - -[taxonomies] - category = 'categories' - tag = 'tags' diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..a9a7a18 --- /dev/null +++ b/config.yaml @@ -0,0 +1,8 @@ +baseURL: 'https://jtom38.github.io/cookbook/' +languageCode: 'en-us' +title: 'Cookbook' +theme: "hugo-bulma-cookbook" + +taxonomies: + category: 'categories' + tag: 'tags' diff --git a/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/index.md b/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/index.md new file mode 100644 index 0000000..498af18 --- /dev/null +++ b/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/index.md @@ -0,0 +1,35 @@ +--- +title: "Sun-Dried Tomato Pasta with Chicken and Mozzarella" +subtitle: +date: 2022-09-28T06:36:00-07:00 +draft: false +tags: [Pasta, Itilian, Chicken, Tomatoes] +listthumbnail: ./chicken-mozzarella-pasta-with-sun-dried-tomatoes/thumbnail.png +thumbnail: ./thumbnail.png +parenturl: https://juliasalbum.com/chicken-mozzarella-pasta-with-sun-dried-tomatoes/ +--- + +## Ingredients + +### sun-dried tomato sauce + +- 3 garlic cloves +- 4 oz sun-dried tomatoes +- olive oil +- salt +- paprika +- basil +- 1 cup half-and-half (or ½ cup heavy cream + ½ cup milk) +- 1 cup Mozzarella cheese, shredded +- ¼ teaspoon red pepper flakes + +## Instructions + +1. In a large skillet, on medium heat sauté garlic and sun-dried tomatoes in the olive oil. +2. Remove the sun-dried tomatoes from the skillet when done. +3. Season sliced chicken with salt and paprika. +4. Add the chicken to the skillet and cook on high heat. +5. Add back the sun-dried tomatoes. Add half-and-half and shredded Mozzarella cheese. +6. Bring the mixture to boil, then reduce to simmer and stir the sun-dried tomato sauce until the cheese melts. +7. Add spices: basil, crushed red pepper flakes, salt. +8. Add cooked and drained penne pasta and stir to combine. diff --git a/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/thumbnail.png b/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/thumbnail.png new file mode 100644 index 0000000..25bc3ee Binary files /dev/null and b/content/recipies/chicken-mozzarella-pasta-with-sun-dried-tomatoes/thumbnail.png differ diff --git a/content/recipies/pasta-e-fagioli-soup/index.md b/content/recipies/pasta-e-fagioli-soup/index.md index 3234e8e..ec4d462 100644 --- a/content/recipies/pasta-e-fagioli-soup/index.md +++ b/content/recipies/pasta-e-fagioli-soup/index.md @@ -4,6 +4,7 @@ subtitle: Fantastic winter soup date: 2022-06-28T09:21:26-07:00 draft: false tags: [Soup, Pasta, Itilian] +listthumbnail: ./pasta-e-fagioli-soup/thumbnail.png thumbnail: ./thumbnail.png parenturl: https://www.savingdessert.com/pasta-e-fagioli-soup-recipe/ --- diff --git a/makefile b/makefile new file mode 100644 index 0000000..64e0b2e --- /dev/null +++ b/makefile @@ -0,0 +1,6 @@ +.PHONY: help +help: ## Shows this help command + @egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' + +dev: ## builds the application with the current go runtime + hugo server -b localhost \ No newline at end of file