diff options
| author | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-08 19:52:04 -0400 |
|---|---|---|
| committer | Sean Fridman <fridman@mail.sfsu.edu> | 2015-04-08 19:52:04 -0400 |
| commit | 47215a88acb2b4a612b6916f2f7b7a7660770c36 (patch) | |
| tree | 602f442d5193882721df0865fc3c224539af9470 /examples/templates/page.liquid | |
| parent | 5f3d47c4bea9c94152a8243c304ee0f43e84ac07 (diff) | |
Update example
Diffstat (limited to 'examples/templates/page.liquid')
| -rw-r--r-- | examples/templates/page.liquid | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/examples/templates/page.liquid b/examples/templates/page.liquid index f7d899f..e90f7ce 100644 --- a/examples/templates/page.liquid +++ b/examples/templates/page.liquid @@ -1,5 +1,14 @@ -woop -<h1>{{page.title}}</h1> -<p> - {{page.body}} -</p> +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" href="../css/main.css"> + </head> + <body> + <div class="container"> + <h1>{{page.title | capitalize}}</h1> + <p> + {{page.body}} + </p> + </div> + </body> +</html> |
