aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--README.md5
-rw-r--r--config/site.rb19
-rw-r--r--src/_layouts/default.haml7
-rw-r--r--src/_partials/example.haml1
-rw-r--r--src/index.haml3
6 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..91e8530
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+build/
+config/amazon.yml
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..3388d43
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# StaticMatic Bare
+
+This is a bare skeleton for StaticMatic.
+
+Visit [https://github.com/mindeavor/staticmatic2](https://github.com/mindeavor/staticmatic2) for more information.
diff --git a/config/site.rb b/config/site.rb
new file mode 100644
index 0000000..ebacd86
--- /dev/null
+++ b/config/site.rb
@@ -0,0 +1,19 @@
+# Default is 3000
+# configuration.preview_server_port = 3000
+
+# Default is localhost
+# configuration.preview_server_host = "localhost"
+
+# Default is true
+# When false .html & index.html get stripped off generated urls
+# configuration.use_extensions_for_page_links = true
+
+# Default is an empty hash
+# configuration.sass_options = {}
+
+# Default is an empty hash
+# http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#options
+# configuration.haml_options = {}
+
+# Default is an empty string
+# configuration.coffee_options = '' \ No newline at end of file
diff --git a/src/_layouts/default.haml b/src/_layouts/default.haml
new file mode 100644
index 0000000..f2c7a01
--- /dev/null
+++ b/src/_layouts/default.haml
@@ -0,0 +1,7 @@
+!!!
+%html
+ %head
+ %title StaticMatic
+ = stylesheets
+ %body
+ = yield
diff --git a/src/_partials/example.haml b/src/_partials/example.haml
new file mode 100644
index 0000000..996d725
--- /dev/null
+++ b/src/_partials/example.haml
@@ -0,0 +1 @@
+%h3 Hello, I am a partial!
diff --git a/src/index.haml b/src/index.haml
new file mode 100644
index 0000000..b4b7006
--- /dev/null
+++ b/src/index.haml
@@ -0,0 +1,3 @@
+%h1 StaticMatic!
+
+= partial 'example'