Skip Static directory if its in your content directory
authorRoss Lawley <ross.lawley@gmail.com>
Thu, 15 Aug 2013 18:58:34 +0000 (19:58 +0100)
committerRoss Lawley <ross.lawley@gmail.com>
Thu, 15 Aug 2013 19:05:46 +0000 (20:05 +0100)
commit0f143dcf1498897d2f7b83fad6830fd964b3ef95
tree6d73918850e567e73c3fc4585769c14f45a606a5
parent3c3fc45d3c34a7dcd1a0e9fd2636e7a5c5933e03
Skip Static directory if its in your content directory

Allows organisation where all source files are in one directory:

```
`config.yaml`:

contentdir: "source"
staticdir: "source/static"
...

 .
└── source
├── post
| ├── firstpost.md // <- http://site.com/post/firstpost.html
| └── secondpost.md // <- http://site.com/post/secondpost.html
└── static
└── css
 └── site.css // <- http://site.com/css/site.css
```
hugolib/site.go