My first (example) HUGO page ever!
Go to file
2024-09-16 20:16:38 +00:00
archetypes First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
content/posts First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
public First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
resources/_gen/assets/css/ananke/css First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
themes Update themes/my-theme/README.md 2024-09-16 20:16:38 +00:00
.gitmodules First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
.hugo_build.lock First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
hugo.toml First commit with hugo example page initialized following the quickstart guide 2024-09-16 22:03:43 +02:00
README.md Added README.md 2024-09-16 22:14:12 +02:00

My first HUGO (example) page!

What is this?

Just a repository for memory. It is just the result of me following the official HUGO quickstart guide on gohugo.io, as of 2024-09-16.

How to run / build

To serve the site for development, run the following command (requires you having hugo installed):

hugo serve

To build the site (resulting in plain html/css in the public directory), run:

hugo  # build the site
#cd public && python3 -m http.server  # run a simple http server included in python to serve the files

The second - commented - command would start a simple (not production-ready!) http server, which does not include LiveReload to reload the content on the fly (if you change something in the source files, hugo serve will automatically refresh open browser pages and show the new content - on the fly).

I just included this command to show how simple the resulting site in the public folder is - even python3's built-in http server module can serve it!

More information

For more information, see the awesome documentation of HUGO itself!