diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-07-18 21:16:59 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-07-18 21:16:59 -0400 |
commit | f442f7a57b3b6b988f1d914b4ef5c53993b1fa90 (patch) | |
tree | 6941249bada8065816b96a55fcee115416e5d86f /data/themes/sample-theme/templates | |
parent | a8b773addc615f85c5e6fbb1835581c25c75504e (diff) | |
download | guff-f442f7a57b3b6b988f1d914b4ef5c53993b1fa90.tar.bz2 guff-f442f7a57b3b6b988f1d914b4ef5c53993b1fa90.zip |
add theme packer
Diffstat (limited to 'data/themes/sample-theme/templates')
-rw-r--r-- | data/themes/sample-theme/templates/blog-list-item.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/themes/sample-theme/templates/blog-list-item.html b/data/themes/sample-theme/templates/blog-list-item.html new file mode 100644 index 0000000..7e9dddf --- /dev/null +++ b/data/themes/sample-theme/templates/blog-list-item.html @@ -0,0 +1,9 @@ +<div id='post-%{post_id}' class='post'> + <div class='title'>%{name|h}</div> + <div class='sub-title'> + By <span class='created-by'>%{user_name|h}</span> + at <span class='posted-at'>%{created_at|h}</span> + </div> + + <div class='body'>%{body}</div> +</div> |