summaryrefslogtreecommitdiff
path: root/views/layout.haml
diff options
context:
space:
mode:
Diffstat (limited to 'views/layout.haml')
-rw-r--r--views/layout.haml36
1 files changed, 0 insertions, 36 deletions
diff --git a/views/layout.haml b/views/layout.haml
deleted file mode 100644
index 5426c34..0000000
--- a/views/layout.haml
+++ /dev/null
@@ -1,36 +0,0 @@
-!!!
-%html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en"}
-
- %head
- %meta{'http-equiv' => 'Content-Type', :content => 'text/html'}
- %title ToxModel
- %link{:rel=>'stylesheet', :href=>'stylesheets/style.css', :type => "text/css"}
-
- %body
- %h1 ToxModel
-
- .index
- %ul
- %li{:class => ("selected" if /create/ =~ request.path )}
- = link_to "Create", "/create"
- %li{:class => ("selected" if /predict/ =~ request.path )}
- = link_to "Predict", "/predict"
- %li{:class => ("selected" if /tasks/ =~ request.path )}
- = link_to "Tasks", "/tasks"
- %li{:class => ("selected" if /about/ =~ request.path )}
- = link_to "About", "/about"
-
- .content
-
- - if flash[:notice]
- .notice
- = flash[:notice]
-
- = yield
-
- .footer
- ©
- %a{:href => 'http://www.in-silico.ch'} in silico toxicology
- 2009, powered by
- %a{:href => 'http://www.opentox.org'} OpenTox
-