diff --git a/content/recipes/manakish-pan.md b/content/recipes/manakish.md similarity index 72% rename from content/recipes/manakish-pan.md rename to content/recipes/manakish.md index 10737cf..11f1fe5 100644 --- a/content/recipes/manakish-pan.md +++ b/content/recipes/manakish.md @@ -1,14 +1,19 @@ --- title: Manakish (pan) -description: Yummy yummy! -you-will-need: |- - * flower - * 1tbsp sugar - * 1 tsp yeast - * 1/4 cup vegetable oil - * 1/2 tsp baking powder - * cheese (mozarella, akkawi) or za'atar for filling +desc: Yummy yummy! --- +## You will need + +* 1 cup flower +* 1tbsp sugar +* 1tbsp sugar +* 1tsp yeast +* 1/4 cup vegetable oil +* 1/2 tsp baking powder +* cheese (mozarella, akkawi) or za'atar for filling + +## Method + 1. Mix the flower, sugar and yeast together in a bowl, and add a 1 cup of warm water. Keep mixing until it turns to a goo-like consistency 2. Cover the bowl for 10 minutes 3. Add the oil, baking powder and a further 1.5 cup of flower, and stir diff --git a/content/recipes/red-lentil-soup.md b/content/recipes/red-lentil-soup.md new file mode 100644 index 0000000..8587b14 --- /dev/null +++ b/content/recipes/red-lentil-soup.md @@ -0,0 +1,24 @@ +--- +title: Red lentil soup +desc: "-" +--- +## You will need + +- 2 cups red lentils (washed) +- 1 white onion +- 1 garlic clove +- 1 tbsp ginger paste +- 1 tbsp salt +- 1 tbsp cumin +- 1 tbsp olive oil +- 1/4 tsp tumeric + +## Method + +1. Dice the onion and fry in oil until slightly browned +2. Paste garlic and add with ginger into the pan +3. Add lentils and stir +4. Add cumin and tumeric +5. Add 6-7 cups of boiling water +6. Simmer and stir occasionally with lid on for 30 minutes +7. Serve with sumac and parsley on top diff --git a/public/admin/config.yml b/public/admin/config.yml index cdbb995..9744e62 100644 --- a/public/admin/config.yml +++ b/public/admin/config.yml @@ -5,16 +5,14 @@ backend: media_folder: public/img public_folder: img collections: - - name: "recipes" - label: "Recipes" - folder: "content/recipes" + - name: recipes + label: Recipes + folder: content/recipes create: true fields: - - {label: "Title", name: "title", widget: "string"} - - {label: "Description", name: "description", widget: "string"} - - {label: Image, name: image, widget: image, required: false} - - {label: "You Will Need", name: "you-will-need", widget: "markdown" } - - {label: "Recipe", name: "body", widget: "markdown" } + - {label: Title, name: title, widget: string} + - {label: Description, name: desc, widget: text} + - {label: Body, name: body, widget: markdown } - name: writing label: Writing diff --git a/public/favicon.ico b/public/favicon.ico index 718d6fe..a6b98ff 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/pages/index.js b/src/pages/index.js index bbcc275..24e5bca 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -13,15 +13,15 @@ export default function Home () {

Hello!

- I'm Aaron. I'm a Brit living in Newcastle-upon-tyne, UK. I - work professionally as a Software Engineer and Tutor, and study - languages in my spare time. + I'm Aaron, a Brit living in Newcastle-upon-tyne, UK. I + work professionally as a Software Engineer, and study + languages, history and philosophy in my spare time.

This is my little corner of the web! I've always had a habit of 'lurking' online; I barely interact with the content I consume, and you'll rarely if ever catch me posting or commenting - on something. That said, this little site endeavours to encourage me + on something. This little site endeavours to encourage me to share a bit more about myself online.

@@ -81,17 +81,6 @@ export default function Home () { , unfortunately. A social network for professionals. - - {/*

- Yarbz Tutoring is my tutoring site. You can read a - bit more about my tutoring and general software develpment experience, - and book a class if it suits you. -

-

- - Read more about my tutoring side-gig. - -

*/}
@@ -99,14 +88,7 @@ export default function Home () {

www.aaronjy.me is a static site (i.e. a bunch of HTML, JS, CSS and image files) written in JavaScript using Next.js. Tacit is being used as a micro CSS framework, and various smaller bits of custom CSS have been applied on top.

The site is hosted inside a Google Cloud Storage bucket with a load balancer sat in front of it. The load balancer is required as Cloud Storage doesn't support a) custom domains, b) HTTPS out of the box or c) a global CDN solution.

One of the biggest benefits of a website made of simple static files and assets is that I can deploy it easily, almost anywhere, and for very little money. Obviously, hosting cost is mostly relative to the amount of data transferred (i.e. the number of visitors accessing your site and downloading its assets), but I anticipate paying only a few pennies a month as things stand (unless my little site becomes incredibly popular overnight for some bizarre reason...)

-

Deploying this site involves:

-
    -
  1. Compiling a bunch of static assets (HTML, CSS, JS) from the site source code using next build
  2. -
  3. Deleting all existing files from the storage bucket used for hosting
  4. -
  5. Uploading the site's new asset files to the bucket
  6. -
  7. Invalidating Google Cloud CDN's global cache, so users receive the latest version of the website
  8. -
-

These steps have been fully automated through a custom script utilising GCP's CLI, so deploying the site couldn't get any simpler.

+
)