diff --git a/eleventy.config.js b/eleventy.config.js
index b82d420..ed4facc 100644
--- a/eleventy.config.js
+++ b/eleventy.config.js
@@ -49,8 +49,8 @@ export default function(eleventyConfig) {
});
return {
- markdownTemplateEngine: "njk",
- htmlTemplateEngine: "njk",
+ markdownTemplateEngine: "vto",
+ htmlTemplateEngine: "vto",
dir: {
input: "src"
}
diff --git a/src/blog/posts/2023-12-27-JavaScriptmas-2023-Challenge-Completed-and-Won.md b/src/blog/posts/2023-12-27-JavaScriptmas-2023-Challenge-Completed-and-Won.md
index 7c35724..417ae07 100644
--- a/src/blog/posts/2023-12-27-JavaScriptmas-2023-Challenge-Completed-and-Won.md
+++ b/src/blog/posts/2023-12-27-JavaScriptmas-2023-Challenge-Completed-and-Won.md
@@ -9,7 +9,7 @@ Starting from 1 December 2023, I had participated in [Scrimba](https://scrimba.c
In addition, when Scrimba announced the winners of JavaScriptmas in their [JavaScriptmas PrizeFest](https://www.youtube.com/live/Y0tc4DTS0e8) livestream on 24 December, it was revealed that [I (under my Twitter handle helen\_clx) was one of the 24 winners of a one-year Scrimba Pro plan](https://www.youtube.com/live/Y0tc4DTS0e8?t=2190) for [my solution to the Day 18 challenge](https://scrimba.com/scrim/co79e43dcbacb329c01a1744f?pl=pdpB3JZfE): AI alt text generator!
-
+
JavaScriptmas has been a great opportunity to practice and sharpen my CSS and JavaScript knowledge and skills. The AI challenges, including Day 18, which I won, were also the first time I learned to incorporate AI in coding projects. Therefore, it was a great surprise that I managed to win for an AI challenge.
diff --git a/src/blog/posts/2024-04-11-rebuilding-my-developer-portfolio-with-eleventy.md b/src/blog/posts/2024-04-11-rebuilding-my-developer-portfolio-with-eleventy.md
index 31550cf..2a68ea8 100644
--- a/src/blog/posts/2024-04-11-rebuilding-my-developer-portfolio-with-eleventy.md
+++ b/src/blog/posts/2024-04-11-rebuilding-my-developer-portfolio-with-eleventy.md
@@ -7,11 +7,11 @@ categories: ["eleventy", "about this website", "about this blog"]
I have been taking courses to learn to code, starting from HTML, CSS and JavaScript, since December 2022. As I honed my front-end web development skills further by building projects, I quickly realised that I needed a portfolio website to showcase myself and my projects. Eventually, I launched my first developer portfolio website in February 2023, based on Kolade Chris tutorial ["How to Build Your Own Developer Portfolio Website with HTML, CSS, and JavaScript"](https://www.freecodecamp.org/news/how-to-build-a-developer-portfolio-website/) on freeCodeCamp, and deployed it to GitHub Pages.
-
+
When I [shared the first version of my developer portfolio website on Twitter](https://twitter.com/helen_clx/status/1621696817795854336), my tweet was liked and replied to by both [Quincy Larson](https://twitter.com/ossia/status/1621729431009071104), the founder of freeCodeCamp, and [Kolade Chris](https://twitter.com/Ksound22/status/1621739428057079808) themselves, despite me not even tagging freeCodeCamp nor Kolade.
-
+
As my front-end web development skills grew, I made my own improvements to the code of my portfolio website, most notably revamping the CSS to a mobile-first approach. In August 2023, I also [launched my tech and coding blog](2023-08-21-Welcome-to-Helen-Codes.md) to document my coding learnings and talk about various tech topics. At first, I tried to build my blog with a Jekyll template in a separate repository, but switched to [Zonelets](https://zonelets.net/), so I can write and manage my blog in HTML, CSS and JavaScript, languages I was already familiar with, and moved my blog to my portfolio website's own repository.
@@ -25,8 +25,8 @@ Thus, my Eleventy journey began. After reading the official Eleventy documentati
Finally, on 9 April 2024, I succeed in rebuilding my developer portfolio website in Eleventy!
-
+
Using a static site generator to build my own websites has been a great learning experience, from creating layouts, templates, installing plug-ins, to setting up GitHub Actions. I am glad that I have learned a great tool to build and maintain my static website projects in a dynamic, flexible and efficient manner.
-Welcome to Helen Chong's brand new Eleventy portfolio website!🎉
\ No newline at end of file
+Welcome to Helen Chong's brand new Eleventy portfolio website!🎉
diff --git a/src/blog/posts/2024-05-27-cs50x-course-completed.md b/src/blog/posts/2024-05-27-cs50x-course-completed.md
index c4341e8..6066dcb 100644
--- a/src/blog/posts/2024-05-27-cs50x-course-completed.md
+++ b/src/blog/posts/2024-05-27-cs50x-course-completed.md
@@ -39,6 +39,6 @@ For the demo video, which was required to submit the final project, I used Bandi
After submitting CS50 Flask Blog as my final project, I successfully claimed my CS50x certificate! You can also [view the PDF version of my CS50x certificate](https://cs50.harvard.edu/certificates/8cb0f5a4-4107-4df6-8abc-cfab3a437367).
-
+
-Taking the CS50x course had been a great opportunity for me to learn about computer science, how to learn different programming languages and practice problem-solving skills with its problem sets. I am continuing to focus on front-end web development, but I hope I could carry what I learned from CS50x in my developer journey.
\ No newline at end of file
+Taking the CS50x course had been a great opportunity for me to learn about computer science, how to learn different programming languages and practice problem-solving skills with its problem sets. I am continuing to focus on front-end web development, but I hope I could carry what I learned from CS50x in my developer journey.
diff --git a/src/blog/posts/2024-07-19-eleventy-3-0-upgrade.md b/src/blog/posts/2024-07-19-eleventy-3-0-upgrade.md
index d8190d6..f09629e 100644
--- a/src/blog/posts/2024-07-19-eleventy-3-0-upgrade.md
+++ b/src/blog/posts/2024-07-19-eleventy-3-0-upgrade.md
@@ -52,7 +52,7 @@ eleventyConfig.addBundle("css");
eleventyConfig.addBundle("js", { toFileDirectory: "assets/js" });
```
-Next, I opened the base layout template for my entire website, and added the `getBundle` shortcode for CSS and `getBundleFileUrl` shortcode for JavaScript in the `