diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-07-28 09:08:37 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-07-28 09:08:37 -0400 |
commit | 000ab373552f5cda51dd501525ba4e579f9243d0 (patch) | |
tree | a4f6c1eeb42440202a8aa6df964aab6f7ab5bcc3 /data/themes/default/templates/post-project.html | |
parent | 4c86c22ff083cd7e50eb6b6cdeba088eaa23b34c (diff) | |
download | guff-000ab373552f5cda51dd501525ba4e579f9243d0.tar.bz2 guff-000ab373552f5cda51dd501525ba4e579f9243d0.zip |
reorganize post views
Diffstat (limited to 'data/themes/default/templates/post-project.html')
-rw-r--r-- | data/themes/default/templates/post-project.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/data/themes/default/templates/post-project.html b/data/themes/default/templates/post-project.html new file mode 100644 index 0000000..725cab0 --- /dev/null +++ b/data/themes/default/templates/post-project.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang='en-US'> + <head> + <meta charset="utf-8"/> + <title>%{name | h}</title> + + %{styles} + </head> + + <body class='guff-post-project'> + <b>Project: %{name | h}</b><br/> + %{body} + + <p> + Repo URL: <a + href='%{repo_url|h}' + title='View %{name|h} Git repository.' + >%{repo_url|h}</a> + </p> + </div> + </body> + + %{scripts} +</html> |