diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2011-08-31 23:13:21 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2011-08-31 23:13:21 +0200 |
commit | 12a7b5b3b6c94b32158aeb3a491811316fad8bd1 (patch) | |
tree | 55178c8a933a84c57f77d11a97cb97c6b0207583 /src | |
download | Thrash-and-Burn-Tour-2012-Website-12a7b5b3b6c94b32158aeb3a491811316fad8bd1.tar.gz Thrash-and-Burn-Tour-2012-Website-12a7b5b3b6c94b32158aeb3a491811316fad8bd1.tar.bz2 Thrash-and-Burn-Tour-2012-Website-12a7b5b3b6c94b32158aeb3a491811316fad8bd1.zip |
Initial commit.
Basig setup by staticmatic2
Diffstat (limited to 'src')
-rw-r--r-- | src/_layouts/default.haml | 7 | ||||
-rw-r--r-- | src/_partials/example.haml | 1 | ||||
-rw-r--r-- | src/index.haml | 3 |
3 files changed, 11 insertions, 0 deletions
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' |