diff options
| author | Paul Duncan <pabs@pablotron.org> | 2016-07-27 22:09:34 -0400 | 
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2016-07-27 22:09:34 -0400 | 
| commit | 911d4fa9eb9f42e65facfa63e46ffcba660766ad (patch) | |
| tree | 31691585e7f8ceca8f51c878022f840e2e81618d /data/themes/default/templates | |
| parent | 955d28062d6926b5ba30b4e306715e3b0454bd1b (diff) | |
| download | guff-911d4fa9eb9f42e65facfa63e46ffcba660766ad.tar.xz guff-911d4fa9eb9f42e65facfa63e46ffcba660766ad.zip  | |
use theme templates for blog-post
Diffstat (limited to 'data/themes/default/templates')
| -rw-r--r-- | data/themes/default/templates/blog-post.html | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/data/themes/default/templates/blog-post.html b/data/themes/default/templates/blog-post.html new file mode 100644 index 0000000..f1eaeb4 --- /dev/null +++ b/data/themes/default/templates/blog-post.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html lang='en-US'> +  <head> +    <meta charset="utf-8"/> +    <title>%{name|h}</title> + +    %{styles} +  </head> + +  <body class='guff-blog-post'> +    <b>blog post: %{name|h}</b><br/> +    <b> +      by <span class='user'>%{user_name|h}</span> +      on <span class='date'>%{posted_at_text|h}</span> +    </b><br/><br/> + +    %{body} +  </body> + +  %{scripts} +</html>  | 
