From 11406016feeeca6aa6e7483fb42a82518873b23c Mon Sep 17 00:00:00 2001 From: Matheus Cruz Date: Wed, 9 Oct 2024 12:43:35 -0300 Subject: [PATCH 1/3] Add me as author --- blog/site/_data/authors.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/blog/site/_data/authors.yml b/blog/site/_data/authors.yml index 120c9669..2afd6b1b 100644 --- a/blog/site/_data/authors.yml +++ b/blog/site/_data/authors.yml @@ -4,4 +4,11 @@ ia3andy: emailhash: "444d54a22db43a0a622180b1ca11dedb" job_title: Principal Software Engineer twitter: "ia3andy" - bio: "I am happy to wake up every day and make the Java world a better place with Quarkus. I am mostly a backend developer but I am not that bad at doing web apps either in my spare time, in fact, you can be the judge of that since Roq is my baby :-)" \ No newline at end of file + bio: "I am happy to wake up every day and make the Java world a better place with Quarkus. I am mostly a backend developer but I am not that bad at doing web apps either in my spare time, in fact, you can be the judge of that since Roq is my baby :-)" +mcruzdev: + name: "Matheus Cruz" + email: "matheuscruz.dev@gmail.com" + emailhash: "30e8dc8556f1557346b2ef93daac4b9c" + job_title: Senior Software Engineer + twitter: "mcruzdev" + bio: "I am a passionate learner, open-source enthusiast, and Java developer with a drive for continuous improvement. When I’m not coding, you can find me on the Brazilian Jiu Jitsu mats, playing the guitar, or exploring new challenges. I believe in the power of community, collaboration, and creativity—both in and outside of tech." \ No newline at end of file From 712d93ef018be8c5b3a932c009b803cf6b510ab2 Mon Sep 17 00:00:00 2001 From: Matheus Cruz Date: Wed, 9 Oct 2024 13:24:56 -0300 Subject: [PATCH 2/3] Add blog post about aliases --- blog/site/_posts/2024-10-09-aliases.md | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 blog/site/_posts/2024-10-09-aliases.md diff --git a/blog/site/_posts/2024-10-09-aliases.md b/blog/site/_posts/2024-10-09-aliases.md new file mode 100644 index 00000000..4207219b --- /dev/null +++ b/blog/site/_posts/2024-10-09-aliases.md @@ -0,0 +1,39 @@ +--- +layout: post +title: The second Roq plugin is for making your life better! +img: https://images.unsplash.com/photo-1691210781188-b8c69945e620?q=80&w=1899&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D +description: We introduced a way to use a alias for redirecting you to your blog post! +author: mcruzdev +tags: plugin, frontmatter, guide, cool-stuff, short-url +aliases: [aliases-very-cool, aliases-4-ever, aliases-again] +--- + +In the last post, we explored how easy it is to use Quarkus as a static site generator, thanks to @ia3andy's insights. I'm excited to share that we now have a new plugin that allows you to set up redirects for your blog posts! For this post, I've created three redirects. + +- [aliases-very-cool](/aliases-very-cool) +- [aliases-4-ever](/aliases-4-ever) +- [aliases-again](/aliases-again) + +**And how did I work my magic to set this up?** + +Step 1: Add the aliases plugin in your dependencies file: + +```xml + + io.quarkiverse.roq + quarkus-roq-plugin-aliases + ... + +``` + +Step 2: Add a new entry `aliases: [name-of-aliases-here]` in your FM data. + +In this blog post I used the following FM: + +```markdown +... +aliases: [aliases-very-cool, aliases-4-ever, aliases-again] +... +``` + +For more info [check out the doc](https://docs.quarkiverse.io/quarkus-roq/dev/quarkus-roq-plugins.html#_roq_plugin_aliases). From 95d2804103a219e54b13b7635feef7901c128a7b Mon Sep 17 00:00:00 2001 From: Matheus Cruz Date: Wed, 9 Oct 2024 14:16:53 -0300 Subject: [PATCH 3/3] Adjust blog post --- blog/site/_posts/2024-10-09-aliases.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blog/site/_posts/2024-10-09-aliases.md b/blog/site/_posts/2024-10-09-aliases.md index 4207219b..c7858909 100644 --- a/blog/site/_posts/2024-10-09-aliases.md +++ b/blog/site/_posts/2024-10-09-aliases.md @@ -8,12 +8,14 @@ tags: plugin, frontmatter, guide, cool-stuff, short-url aliases: [aliases-very-cool, aliases-4-ever, aliases-again] --- -In the last post, we explored how easy it is to use Quarkus as a static site generator, thanks to @ia3andy's insights. I'm excited to share that we now have a new plugin that allows you to set up redirects for your blog posts! For this post, I've created three redirects. +In the last post, we saw how easy it is to use Quarkus for static site generator (@ia3andy's was right!). I am excited to share that we now have a new plugin that allows you to set up redirects for your blog posts! For this post, I've created three aliases. - [aliases-very-cool](/aliases-very-cool) - [aliases-4-ever](/aliases-4-ever) - [aliases-again](/aliases-again) +> If you click on at least one alias, you will be redirected here again! + **And how did I work my magic to set this up?** Step 1: Add the aliases plugin in your dependencies file: