summaryrefslogtreecommitdiffstats
path: root/docs/content/doc/configuration.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/doc/configuration.md')
-rw-r--r--docs/content/doc/configuration.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/content/doc/configuration.md b/docs/content/doc/configuration.md
new file mode 100644
index 000000000..bc8df19e0
--- /dev/null
+++ b/docs/content/doc/configuration.md
@@ -0,0 +1,19 @@
+{
+ "title": "Configuring Hugo",
+ "Pubdate": "2013-07-01"
+}
+
+The directory structure and templates provide the majority of the
+configuration for a site. In fact a config file isn't even needed for many websites
+since the defaults used follow commonly used patterns.
+
+The following is an example of a config file with the default values
+
+ {
+ "SourceDir" : "content",
+ "LayoutDir" : "layouts",
+ "PublishDir" : "public",
+ "BuildDrafts" : false,
+ "Tags" : { "category" : "categories", "tag" : "tags" },
+ "BaseUrl" : "http://yourSite.com/"
+ }