diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-07-15 19:46:16 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-07-15 19:46:16 -0400 |
commit | 7577c32a83d2897617fb60f488d6d71cd23be698 (patch) | |
tree | afb2a59e5d70a642cecd132bde1d67b5b71fc8a1 /src/views/blog/list.ecr | |
parent | fdae24c68dfc35173b0a6c2b6d9e81bb0b3f9b00 (diff) | |
download | guff-7577c32a83d2897617fb60f488d6d71cd23be698.tar.bz2 guff-7577c32a83d2897617fb60f488d6d71cd23be698.zip |
add initial blog list templates
Diffstat (limited to 'src/views/blog/list.ecr')
-rw-r--r-- | src/views/blog/list.ecr | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/views/blog/list.ecr b/src/views/blog/list.ecr new file mode 100644 index 0000000..d0a35ca --- /dev/null +++ b/src/views/blog/list.ecr @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html lang='en-US'> + <head> + <meta charset="utf-8"/> + <title><%= + h(TITLE) + %></title> + + <% + # TODO: add theme styles + %> + </head> + + <body> + <b>blog list</b> + + <div class='posts'><%= + posts + %></div><!-- posts --> + </body> + + <% + # TODO: add theme scripts + %> +</html> |