2013-07-04 11:32:55 -04:00
|
|
|
{
|
|
|
|
"title": "Source Directory Organization",
|
|
|
|
"Pubdate": "2013-07-01"
|
|
|
|
}
|
|
|
|
|
|
|
|
Hugo takes a single directory and uses it as the input for creating a complete website.
|
|
|
|
|
|
|
|
Hugo has a very small amount of configuration, while remaining highly customizable.
|
|
|
|
It accomplishes by assuming that you will only provide templates with the intent of
|
|
|
|
using them.
|
|
|
|
|
|
|
|
An example directory may look like:
|
|
|
|
|
|
|
|
.
|
|
|
|
├── config.json
|
|
|
|
├── content
|
|
|
|
| ├── post
|
|
|
|
| | ├── firstpost.md
|
|
|
|
| | └── secondpost.md
|
|
|
|
| └── quote
|
|
|
|
| | ├── first.md
|
|
|
|
| | └── second.md
|
|
|
|
├── layouts
|
|
|
|
| ├── chrome
|
|
|
|
| | ├── header.html
|
|
|
|
| | └── footer.html
|
|
|
|
| ├── indexes
|
|
|
|
| | ├── category.html
|
|
|
|
| | ├── post.html
|
|
|
|
| | ├── quote.html
|
|
|
|
| | └── tag.html
|
|
|
|
| ├── post
|
|
|
|
| | ├── li.html
|
|
|
|
| | ├── single.html
|
|
|
|
| | └── summary.html
|
|
|
|
| ├── quote
|
|
|
|
| | ├── li.html
|
|
|
|
| | ├── single.html
|
|
|
|
| | └── summary.html
|
|
|
|
| ├── shortcodes
|
|
|
|
| | ├── img.html
|
|
|
|
| | ├── vimeo.html
|
|
|
|
| | └── youtube.html
|
|
|
|
| ├── index.html
|
|
|
|
| └── rss.xml
|
|
|
|
└── public
|
|
|
|
|
|
|
|
This directory structure tells us a lot about this site:
|
|
|
|
|
|
|
|
1. the website intends to have two different types of content, posts and quotes.
|
|
|
|
2. It will also apply two different indexes to that content, categories and tags.
|
|
|
|
3. It will be displaying content in 3 different views, a list, a summary and a full page view.
|
|
|
|
|
2013-07-04 13:03:16 -04:00
|
|
|
Included with the repository is this example site ready to be rendered.
|