summaryrefslogtreecommitdiff
path: root/web/lib/ui
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2013-01-18 16:38:26 +0100
committerJochen Topf <jochen@topf.org>2013-01-18 16:38:26 +0100
commitcccd07319ce6979fc068ed55f9c4b778998b01aa (patch)
tree9b67b1c75b0340185b1475995fccc5187aeb7fff /web/lib/ui
parent1c332107b2fc68f997cee654cfcf18604ab55c9b (diff)
downloadtaginfo-cccd07319ce6979fc068ed55f9c4b778998b01aa.tar
taginfo-cccd07319ce6979fc068ed55f9c4b778998b01aa.tar.gz
Add help dialog
Diffstat (limited to 'web/lib/ui')
-rw-r--r--web/lib/ui/help.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/web/lib/ui/help.rb b/web/lib/ui/help.rb
new file mode 100644
index 0000000..acbf7c0
--- /dev/null
+++ b/web/lib/ui/help.rb
@@ -0,0 +1,12 @@
+# web/lib/ui/help.rb
+class Taginfo < Sinatra::Base
+
+ get '/help/keyboard' do
+ erb :'help/keyboard', :layout => false
+ end
+
+ get '/help/search' do
+ erb :'help/search', :layout => false
+ end
+
+end