configurable permalinks support
authorPhil Pennock <pdp@spodhuis.org>
Mon, 18 Nov 2013 09:35:56 +0000 (04:35 -0500)
committerNoah Campbell <noahcampbell@gmail.com>
Mon, 18 Nov 2013 21:32:56 +0000 (13:32 -0800)
commit07978e4a4922bc21c230fee65052232b829bd1ab
tree02ec2b8a301becbea7660ff8dfbadc528737e75c
parent4f335f0c7f83daa32906e8e40c7ac225efa113de
configurable permalinks support

A sample config.yaml for a site might contain:

```yaml
permalinks:
  post: /:year/:month/:title/
```

Then, any article in the `post` section, will have the canonical URL
formed via the permalink specification given.

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
hugolib/config.go
hugolib/page.go
hugolib/permalinks.go [new file with mode: 0644]
hugolib/permalinks_test.go [new file with mode: 0644]
hugolib/site.go