docs: update 'Updating' sections with new format
[webi-installers/.git] / hugo / README.md
1 ---
2 title: Hugo
3 homepage: https://github.com/gohugoio/hugo
4 tagline: |
5   Hugo: The world’s fastest framework for building websites.
6 ---
7
8 To update or switch versions, run `webi hugo@stable` (or `@v0.87`, `@beta`,
9 etc).
10
11 ## Cheat Sheet
12
13 > Hugo is one of the most popular open-source static site generators. It makes
14 > building websites fun again.
15
16 ### Create a new site
17
18 ```bash
19 # create a new site
20 hugo new site ./blog.example.com
21 ```
22
23 ```bash
24 # compile a site
25 hugo
26 ```
27
28 ```bash
29 # serve a site in dev mode
30 hugo server -D
31 ```