hugo/hugolib
Ross Lawley 0f143dcf14 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
```
2013-08-15 20:05:46 +01:00
..
benchmark_test.go Adding more test cases 2013-08-09 17:36:32 -07:00
config.go Use / for template names regardless of platform. 2013-08-12 15:03:06 -07:00
content_directory_test.go Ignore dotfiles in content directory 2013-08-12 20:40:52 -07:00
helpers.go move "dot" in regex to avoid it being part of a range 2013-08-12 19:55:52 -07:00
index.go Added support for indexes of indexes & ordered indexes 2013-08-03 03:09:28 -04:00
node.go Further work on path/section stuff. Tests passing now. 2013-08-14 08:57:14 -04:00
page.go Further work on path/section stuff. Tests passing now. 2013-08-14 08:57:14 -04:00
page_index_test.go Test GetParam and the various incarnations of frontmatter. 2013-08-12 20:25:32 -07:00
page_test.go Further work on path/section stuff. Tests passing now. 2013-08-14 08:57:14 -04:00
page_time_integration_test.go Support for non-standard formats. 2013-08-12 14:35:39 -07:00
path_seperators_test.go Further work on path/section stuff. Tests passing now. 2013-08-14 08:57:14 -04:00
path_seperators_windows_test.go gofmt pass 2013-08-12 20:40:34 -07:00
redis.cn.md Adding benchmark for parsing pages using unicode. 2013-08-09 17:36:32 -07:00
shortcode.go adding hugo 2013-07-04 11:32:55 -04:00
site.go Skip Static directory if its in your content directory 2013-08-15 20:05:46 +01:00