diff options
| author | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-01 18:27:51 -0400 |
|---|---|---|
| committer | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-01 18:27:51 -0400 |
| commit | 2e041ff6cd1b40c26bf16d37777c2c1c5153a669 (patch) | |
| tree | 1e427659faf343bf42795beae8980000436617b8 /examples/www | |
| parent | ae24790e8122296b06f88fa883b8e272c6454d46 (diff) | |
Bootstrappin young lad
Diffstat (limited to 'examples/www')
| -rw-r--r-- | examples/www/index.mustache | 13 | ||||
| -rw-r--r-- | examples/www/page.mustache | 5 | ||||
| -rw-r--r-- | examples/www/project.mustache | 2 |
3 files changed, 20 insertions, 0 deletions
diff --git a/examples/www/index.mustache b/examples/www/index.mustache new file mode 100644 index 0000000..04d0632 --- /dev/null +++ b/examples/www/index.mustache @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + </head> + <body> + {{meta.project}} + <ul> + {{#projects}} + <li>{{id}}</li> + {{/projects}} + </ul> + </body> +</html> diff --git a/examples/www/page.mustache b/examples/www/page.mustache new file mode 100644 index 0000000..f7d899f --- /dev/null +++ b/examples/www/page.mustache @@ -0,0 +1,5 @@ +woop +<h1>{{page.title}}</h1> +<p> + {{page.body}} +</p> diff --git a/examples/www/project.mustache b/examples/www/project.mustache new file mode 100644 index 0000000..dac1d8d --- /dev/null +++ b/examples/www/project.mustache @@ -0,0 +1,2 @@ +babaganuj +{{project.id}} |
