mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
ba44e860a3
* Add meta author, description and generator tags * Add Hugo version beside the logo and in the footer * Suggest the user to run `go get -u -v` to update dependencies * Requires Go 1.3+ rather than Go 1.1+ * Improve rendering/formatting in some places * Add trailing slash to URLs where appropriate * GitHub redirects all http requests to https, update accordingly
58 lines
1.6 KiB
Markdown
58 lines
1.6 KiB
Markdown
---
|
|
date: 2014-05-26
|
|
linktitle: Builders
|
|
menu:
|
|
main:
|
|
parent: extras
|
|
next: /extras/comments
|
|
prev: /extras/aliases
|
|
title: Hugo Builders
|
|
weight: 20
|
|
---
|
|
|
|
Hugo provides the functionality to quickly get a site, theme or page
|
|
started.
|
|
|
|
|
|
## New Site
|
|
|
|
Want to get a site built quickly?
|
|
|
|
$ hugo new site /path/to/site
|
|
|
|
Hugo will create all the needed directories and files to get started
|
|
quickly.
|
|
|
|
Hugo will only touch the files and create the directories (in the right
|
|
places), [configuration](/overview/configuration/) and content are up to
|
|
you... but luckily we have builders for content (see below).
|
|
|
|
## New Theme
|
|
|
|
Want to design a new theme?
|
|
|
|
$ hugo new theme THEME_NAME
|
|
|
|
Run from your working directory, this will create a new theme with all
|
|
the needed files in your themes directory. Hugo will provide you with a
|
|
license and theme.toml file with most of the work done for you.
|
|
|
|
Follow the [Theme Creation Guide](/themes/creation/) once the builder is
|
|
done.
|
|
|
|
## New Content
|
|
|
|
You will use this builder the most of all. Every time you want to create
|
|
a new piece of content, the content builder will get you started right.
|
|
|
|
Leveraging [content archetypes](/content/archetypes/) the content builder
|
|
will not only insert the current date and appropriate metadata, but it
|
|
will pre-populate values based on the content type.
|
|
|
|
$ hugo new relative/path/to/content
|
|
|
|
This assumes it is being run from your working directory and the content
|
|
path starts from your content directory.
|
|
|
|
I typically keep two different terminals open, one to run `hugo server
|
|
--watch`, and another to use the builders to create new content.
|