Personalize your homepage
Quest: personalize-homepage
Mission
Replace the starter heading in ~/src/pages/index.md, run build-website, then check the generated homepage.
Why This Matters
Editing generated HTML is a trap because the next build can overwrite it. Editing source, rebuilding, and checking output is the repeatable publishing loop.
Commands You Will Use
microbuild-websitecat
Steps
- Open
~/src/pages/index.mdwithmicro. - Replace
A Linux site under constructionwith any text. - Save the source file and quit the editor.
- Run
build-website. - Run
cat ~/public_html/index.htmland find your new heading. - Ask the guide to check the source and generated homepage.
Hints
- Edit
~/src/pages/index.md, not~/public_html/index.html. - Rebuild after saving the Markdown source.
- The starter heading must be gone from both source and generated output.
If Check Fails
Open ~/src/pages/index.md, replace the starter heading, save, run build-website, then check ~/public_html/index.html again.

Linux Foundations