Skip to content

Commit 9ae2bbe

Browse files
johanrinclaude
andcommitted
Fix robots.txt generation, update Twitter links to X, clean up config
- Add robots output format to homepage so robots.txt is generated - Remove dead ignoreErrors config for removed additionalScripts - Update Twitter links and references to X across 5 older posts - Update Hugo version in CLAUDE.md to v0.154.5 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2011101 commit 9ae2bbe

7 files changed

Lines changed: 12 additions & 9 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
66

77
This is a Hugo static blog site deployed to GitHub Pages. The site focuses on AI, cloud architecture, and Microsoft Foundry content.
88

9-
**Tech Stack:** Hugo (v0.153.2) with hugo-blog-awesome theme (Git submodule)
9+
**Tech Stack:** Hugo (v0.154.5) with hugo-blog-awesome theme (Git submodule)
1010

1111
## Common Commands
1212

content/posts/aws-step-functions-with-api-gateway-and-sam/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,4 @@ It took us only a few lines of YAML to combine these services. Very convenient!
224224
You can find the GitHub repository with the complete code here:
225225
[https://github.com/johanrin/sam-step-functions-api-tutorial](https://github.com/johanrin/sam-step-functions-api-tutorial)
226226

227-
That's it for me, hope you learned something! If you have any questions, [find me on Twitter](https://twitter.com/johanrin) and feel free to ask me anything 🙏
227+
That's it for me, hope you learned something! If you have any questions, [find me on X](https://x.com/johanrin) and feel free to ask me anything 🙏

content/posts/azure-administrator-az-104/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ As you can imagine, this is an in-depth exam which will test you on technical sk
6565

6666
## How much does the exam cost?
6767

68-
The exam costs $165, but you can schedule it for free with a voucher. Be sure to follow me on [Twitter](https://twitter.com/johanrin) — I tweet every time I find opportunities to get free vouchers.
68+
The exam costs $165, but you can schedule it for free with a voucher. Be sure to follow me on [X](https://x.com/johanrin) — I post every time I find opportunities to get free vouchers.
6969

7070
{{< x user="johanrin" id="1320278269242101764" >}}
7171

@@ -100,4 +100,4 @@ If I had one recommendation, prepare for the AZ-900, AZ-104, and then AZ-303 & A
100100

101101
Don't try to jump from AZ-900 to AZ-30x! It's painful, trust me... 😅
102102

103-
That's it for me, hope you learned something! If you have any questions, [find me on Twitter](https://twitter.com/johanrin) and feel free to ask me anything 🙏
103+
That's it for me, hope you learned something! If you have any questions, [find me on X](https://x.com/johanrin) and feel free to ask me anything 🙏

content/posts/azure-architect-az-300/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ It was exhausting, and I'm very proud of this one. But if I had to do it again,
157157

158158
That's okay! I'm not finished yet: my goal is to earn the Azure Solutions Architect Expert certification. So, I still need to pass the AZ-304 Microsoft Azure Architect Design exam. And if you follow me on Twitter, you can be sure that I'll share my progress until I get it!
159159

160-
That's it for me, hope you learned something! If you have any questions, [find me on Twitter](https://twitter.com/johanrin) and feel free to ask me anything 🙏
160+
That's it for me, hope you learned something! If you have any questions, [find me on X](https://x.com/johanrin) and feel free to ask me anything 🙏

content/posts/azure-resource-group/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ In this post, you've learned about resource groups, the dependencies with resour
134134

135135
It was something very confusing for me at first. But now, that's okay 👍
136136

137-
That's it for me, hope you learned something! If you have any questions, [find me on Twitter](https://twitter.com/johanrin) and feel free to ask me anything 🙏
137+
That's it for me, hope you learned something! If you have any questions, [find me on X](https://x.com/johanrin) and feel free to ask me anything 🙏

content/posts/deploy-react-app-in-azure-storage-and-static-web-apps/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,4 @@ Oh, and you can find the GitHub repositories I used here:
241241
- [https://github.com/johanrin/react-app-on-azure](https://github.com/johanrin/react-app-on-azure)
242242
- [https://github.com/johanrin/react-app-on-azure-2](https://github.com/johanrin/react-app-on-azure-2)
243243

244-
That's it for me, hope you learned something! If you have any questions, [find me on Twitter](https://twitter.com/johanrin) and feel free to ask me anything 🙏
244+
That's it for me, hope you learned something! If you have any questions, [find me on X](https://x.com/johanrin) and feel free to ask me anything 🙏

hugo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ enableEmoji = true
99

1010
# Use git commit dates for .Lastmod (improves sitemap and structured data)
1111
enableGitInfo = true
12-
ignoreErrors = ["additional-script-loading-error"]
1312

1413
# traditional way: theme component resides in directory 'themes'
1514
theme = "hugo-blog-awesome"
@@ -139,5 +138,9 @@ url = "/index.xml"
139138
changefreq = "weekly"
140139
priority = 0.5
141140

142-
# Generate robots.txt using an embedded template
141+
# Generate robots.txt using custom template in layouts/robots.txt
143142
enableRobotsTXT = true
143+
144+
# Include robots.txt in homepage outputs (theme only sets html + rss)
145+
[outputs]
146+
home = ['html', 'rss', 'robots']

0 commit comments

Comments
 (0)