diff options
| author | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-07 22:18:48 -0400 |
|---|---|---|
| committer | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-07 22:18:48 -0400 |
| commit | 8896617d1b5db8f4c58c08a4fb7361ce9e55281a (patch) | |
| tree | 94d89c8b42267b47b1701551f04b213c34ecc00f /examples/templates/index.liquid | |
| parent | 57b72a57449f00938dd80c17c9c138ecee8a2ad4 (diff) | |
Use correct extension for Liquid templates
Diffstat (limited to 'examples/templates/index.liquid')
| -rw-r--r-- | examples/templates/index.liquid | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/templates/index.liquid b/examples/templates/index.liquid new file mode 100644 index 0000000..21d8764 --- /dev/null +++ b/examples/templates/index.liquid @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" href="css/main.css"> + </head> + <body> + {{meta.project}} + <ul> + {% for project in projects %} + <li>{{project.id}}</li> + {% endfor %} + </ul> + </body> +</html> |
