aboutsummaryrefslogtreecommitdiff
path: root/index.cgi
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2010-02-24 09:27:09 +0100
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2010-02-24 09:27:09 +0100
commit5c4888e3e02a47c0fbe6f601c4e226c7f5d8c12b (patch)
tree2b754df97f08bc44bb3d655b45c949fef0d28a08 /index.cgi
parentdb79178b0fdb7382cd4acf9d6767c3ad1a9dbe05 (diff)
make examples as list
Diffstat (limited to 'index.cgi')
-rwxr-xr-xindex.cgi10
1 files changed, 6 insertions, 4 deletions
diff --git a/index.cgi b/index.cgi
index c7bcbe3..da10b66 100755
--- a/index.cgi
+++ b/index.cgi
@@ -131,10 +131,12 @@ NOTICE
CREATE
if defined?(EXAMPLES)
- $d << "<div><h2>" + _("Examples") + "</h2>"
- $d << _("If you want to play around with the Tool, you may want to take a look at these Example Polls:") + "<br />"
- $d << "<a href='#{EXAMPLES["event_schedule_example"]}'>" + _("Event Schedule Poll") + "</a><br />" if EXAMPLES["event_schedule_example"]
- $d << "<a href='#{EXAMPLES["normal_example"]}'>" + _("Normal Poll") + "</a></div>" if EXAMPLES["normal_example"]
+ $d << "<div class='textcolumn'><h2>" + _("Examples") + "</h2>"
+ $d << _("If you want to play around with the Tool, you may want to take a look at these Example Polls:")
+ $d << "<ul>"
+ $d << "<li><a href='#{EXAMPLES["event_schedule_example"]}'>" + _("Event Schedule Poll") + "</a></li>" if EXAMPLES["event_schedule_example"]
+ $d << "<li><a href='#{EXAMPLES["normal_example"]}'>" + _("Normal Poll") + "</a></li>" if EXAMPLES["normal_example"]
+ $d << "</ul></div>"
end
$d << NOTICE