diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-08-18 23:00:34 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-08-18 23:00:34 +0200 |
| commit | a8a5509a02fec7dcc57ec9382c97685cf711360d (patch) | |
| tree | af0ae90be0dba4db5875799496d5da57d7f9d75b /templates/index.liquid | |
| parent | 12c1d5bd29fcc23b5c0ddb0bf2332d256abbf3a9 (diff) | |
index stuff
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> |
