aboutsummaryrefslogtreecommitdiff
path: root/config_sample.rb
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2010-10-25 15:17:32 +0200
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2010-10-25 15:17:32 +0200
commitbfe040cb39358a7929fc0b6f1ceb6328c56f5738 (patch)
tree4f3b53a34cd54136df9856d1b40598a07bcc0466 /config_sample.rb
parent8b987d5c5b8dd11752a761d7e0e877d00c2e76db (diff)
possibility to add text to about page
Diffstat (limited to 'config_sample.rb')
-rw-r--r--config_sample.rb15
1 files changed, 13 insertions, 2 deletions
diff --git a/config_sample.rb b/config_sample.rb
index a5ea129..986be02 100644
--- a/config_sample.rb
+++ b/config_sample.rb
@@ -96,8 +96,7 @@ EXAMPLES = [
}
]
-# add the htmlcode in the Variable EXAMPLENOTICE to the startpage
-# Example: displays all available Polls
+# add the htmlcode in the Variable EXAMPLENOTICE to the example page
examplenotice = <<EXAMPLENOTICE
<h2>Screencasts</h2>
<ol>
@@ -108,6 +107,18 @@ examplenotice = <<EXAMPLENOTICE
EXAMPLENOTICE
EXAMPLENOTICE = examplenotice
+# add the htmlcode in the Variable ABOUTNOTICE to the about page
+aboutnotice = <<ABOUTNOTICE
+<div class='textcolumn'>
+ <h2>Bugs/Features</h2>
+ <ul>
+ <li><a href="Bugs">Report a Bug</a></li>
+ <li><a href="Features">Request a Feature</a></li>
+ </ul>
+</div>
+ABOUTNOTICE
+ABOUTNOTICE = aboutnotice
+
# choose a default stylesheet
# e.g., "classic.css", "css/foobar.css", ...
DEFAULT_CSS = "default.css"