diff options
Diffstat (limited to 'data/themes/sample-theme/templates/blog-list-item.html')
-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> |