diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-07-27 20:04:31 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-07-27 20:04:31 -0400 |
commit | 066895cea97d0b730bc9b56054c9691e5181dd3f (patch) | |
tree | 592530f6c1e70cf97cded4e73317bc7433a4a384 /data/themes | |
parent | 8ffde2e23c21ccae81f34c34ef115993719d34eb (diff) | |
download | guff-066895cea97d0b730bc9b56054c9691e5181dd3f.tar.bz2 guff-066895cea97d0b730bc9b56054c9691e5181dd3f.zip |
use theme template to render pages
Diffstat (limited to 'data/themes')
-rw-r--r-- | data/themes/blank/templates/page.html | 15 | ||||
-rw-r--r-- | data/themes/default/templates/page.html | 24 |
2 files changed, 39 insertions, 0 deletions
diff --git a/data/themes/blank/templates/page.html b/data/themes/blank/templates/page.html new file mode 100644 index 0000000..78737aa --- /dev/null +++ b/data/themes/blank/templates/page.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html lang='en-US'> + <head> + <meta charset="utf-8"/> + <title>%{name | h}</title> + + %{styles} + </head> + + <body> + %{body} + </body> + + %{scripts} +</html> diff --git a/data/themes/default/templates/page.html b/data/themes/default/templates/page.html new file mode 100644 index 0000000..5b64509 --- /dev/null +++ b/data/themes/default/templates/page.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang='en-US'> + <head> + <meta charset="utf-8"/> + <title>%{ + name | h + }</title> + + %{styles} + </head> + + <body> + <div class='post'> + <b>page: %{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} + </div> + </body> + + %{scripts} +</html> |