Add directory based archetypes
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 19 Sep 2018 05:48:17 +0000 (07:48 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 23 Sep 2018 17:27:23 +0000 (19:27 +0200)
commit2650fa772b40846d9965f8c5f169286411f3beb2
tree26d209ebea23611c146d851cb12827e793eaf6d5
parentef525b15d4584886b52428bd7a35de835ab07a48
Add directory based archetypes

Given this content:

```bash
archetypes
├── default.md
└── post-bundle
    ├── bio.md
    ├── images
    │   └── featured.jpg
    └── index.md
```

```bash
hugo new --kind post-bundle post/my-post
```

Will create a new folder in `/content/post/my-post` with the same set of files as in the `post-bundle` archetypes folder.

This commit also improves the archetype language detection, so, if you use template code in your content files, the `.Site` you get is for the correct language. This also means that it is now possible to translate strings defined in  the `i18n` bundles,  e.g. `{{ i18n "hello" }}`.

Fixes #4535
commands/new.go
commands/new_content_test.go
create/content.go
create/content_template_handler.go
create/content_test.go
hugolib/fileInfo.go
hugolib/hugo_sites.go
hugolib/page_bundler_capture.go
hugolib/site.go