summaryrefslogtreecommitdiff
path: root/views/layout.haml
blob: c14091bf248569e0cadc44da8ed06742974c16bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
!!! 
%html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en"}

  %head
    %meta{'http-equiv' => 'Content-Type', :content => 'text/html; charset=UTF-8'}
    %title lazar (Lazy Structure Activity Relationships)
    %script{:type => "text/javascript", :src  => "javascripts/jquery.js"}
    %script{:type => "text/javascript", :src  => "javascripts/toxcreate.js"}
    %script{:type => "text/javascript", :src  => "javascripts/jquery-ui-progressbar.js"}
    %link{:rel=>'stylesheet', :href=>'stylesheets/style.css', :type => "text/css"}
    %link{:rel=>'stylesheet', :href=>'progressbar/progressbar.css', :type => "text/css"}      

  %body
    .logo
      %h1= "Lazar Toxicity Predictions"
        
    .index
      %ul
        -#%li{:class => ("selected" if /\/create|echa|ambit|feature/ =~ request.path )}
          -#= link_to "Create", "/create"
        %li{:class => ("selected" if /predict|lazar/ =~ request.path )}
          = link_to "Prediction", "/predict"
        %li{:class => ("selected" if /models/ =~ request.path )}
          = link_to "Validation", "/models"       
        - if AA_SERVER
          -#%li{:class => ("selected" if /login/ =~ request.path )}
            -#= link_to "Login", "/login"
        -#%li{:class => ("selected" if /help/ =~ request.path )}
          -#= link_to "Documentation", "/help"

    .content
      .login_info
        - if session[:username].size > 0
          User:
          %b= session[:username]

      .notice
        This is an experimental version based on
        %a{:href => "http://www.opentox.org", :rel => "external"} OpenTox
        services. Please report problems and feature requests to our 
        %a{:href => 'http://github.com/opentox/toxcreate/issues', :rel => "external"} issue tracker.
        %hr
        Please note that this version will be discontinued soon. A new version is available
        %a{:href => "http://lazar.in-silico.ch", :rel => "external"} here.

      - if `hostname`.match(/ot-test/)
        .notice 
          This service is for testing purposes only - once a week all models will be deleted. Please send bug reports and feature requests to our 
          %a{:href => 'http://github.com/opentox/toxcreate/issues', :rel => "external"} issue tracker.

      - if flash[:notice]
        %p
        .notice#flashnotice
          = flash[:notice]

      = yield

    .footer
      © 
      %a{:href => 'http://www.in-silico.ch', :rel => "external"} in silico toxicology gmbh
      2004-2011