add webi dat dat dat
[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 ## Updating `hugo`
9
10 ```bash
11 webi hugo@stable
12 ```
13
14 Use the `@beta` tag for pre-releases.
15
16 ## Cheat Sheet
17
18 > Hugo is one of the most popular open-source static site generators. It makes
19 > building websites fun again.
20
21 ### Create a new site
22
23 ```bash
24 # create a new site
25 hugo new site ./blog.example.com
26 ```
27
28 ```bash
29 # compile a site
30 hugo
31 ```
32
33 ```bash
34 # serve a site in dev mode
35 hugo server -D
36 ```