aboutsummaryrefslogtreecommitdiff
path: root/data/themes/default/templates
diff options
context:
space:
mode:
Diffstat (limited to 'data/themes/default/templates')
-rw-r--r--data/themes/default/templates/page.html2
-rw-r--r--data/themes/default/templates/project.html24
2 files changed, 25 insertions, 1 deletions
diff --git a/data/themes/default/templates/page.html b/data/themes/default/templates/page.html
index 5b64509..24f2290 100644
--- a/data/themes/default/templates/page.html
+++ b/data/themes/default/templates/page.html
@@ -9,7 +9,7 @@
%{styles}
</head>
- <body>
+ <body class='guff-page'>
<div class='post'>
<b>page: %{name | h}</b><br/>
<b>
diff --git a/data/themes/default/templates/project.html b/data/themes/default/templates/project.html
new file mode 100644
index 0000000..c62227a
--- /dev/null
+++ b/data/themes/default/templates/project.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang='en-US'>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Project: %{name | h}</title>
+
+ %{styles}
+ </head>
+
+ <body class='guff-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>