Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Example site for Hugo themes with sample content for the Hugo Themes showcase.
hugoBasicExample is the official example site repository from the Hugo team (gohugoio) that provides starter content for testing Hugo themes and serves as the default demo content on the Hugo Themes Showcase. The repo contains a minimal content tree—sample posts, a headless homepage bundle, and an about page—so any compatible theme can be rendered and evaluated without creating your own content.
hugoBasicExample is a boilerplate content repository for the Hugo static site generator, maintained by the Hugo team on GitHub under the gohugoio organization. It takes a Hugo theme as its input and produces a runnable example site when you start the local development server with hugo server -t THEMENAME. The repository itself contains no theme code; it supplies only the content and structure that themes expect, and it is the same content used for demos on the Hugo Themes Showcase.
/content/post/ directory includes several markdown articles you can use to see how a theme renders post listings and individual pages.homepage page bundle is set up as a headless bundle, which is useful for single-page applications that need structured data without a rendered HTML page.about.md file creates the /about/ page that many themes include in their demos, so navigation menus and about templates work immediately.hugo server -t YOURTHEME lets you swap any compatible Hugo theme into the same content set to compare layouts side-by-side.hugo server -t THEME, and preview the same sample content under different designs without writing your own content first.hugo server -t YOURTHEME to start a local server that renders the sample content with that theme.