diff options
Diffstat (limited to 'templates/index.liquid')
| -rw-r--r-- | templates/index.liquid | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/index.liquid b/templates/index.liquid new file mode 100644 index 0000000..317ee58 --- /dev/null +++ b/templates/index.liquid @@ -0,0 +1,34 @@ +<!doctype html> +<html> +<head> +<title>The Folkestone Gossip</title> +<link href='/css.css' rel='stylesheet' type='text/css'> +</head> +<body> + +<div id="header"> + <div id='tags'></div> +</div> + +<div id="body"> + {% for entry in entrys %} + <div class='cell' data-id='{entry.id}'> + {entry.title} + </div> + {% endfor %} +</div> + +<div id="about"> + {% for page in pages %} + {% page.body %} + {% endfor %} +</div> + +<div id="entry"> + <div class='media'></div> + <h1></h1> + <div class='content'></div> +</div> + +</body> +</html> |
