Sha256: 63629f4330c4755b2519534aac8ae90acf70f1d945d0fa04345305f856f986c7
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
<!DOCTYPE html> <html> <head> <title>INTERPRET - <%= yield :title %></title> <%= stylesheet_link_tag "interpret_style" %> <%= javascript_include_tag "https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" %> <%= javascript_include_tag "jquery.purr" %> <%= javascript_include_tag "best_in_place" %> <%= csrf_meta_tag %> </head> <body> <div id="container"> <div class="menu grid_16"> <%= interpret_section_link_to "Overview", interpret_root_path %> | <%= interpret_section_link_to "Tools", interpret_tools_path %> | <%= interpret_section_link_to "Search", interpret_search_path %> <hr /> </div> <div class="menu grid_16"> Languages: <% I18n.available_locales.each do |locale| %> <%= link_to locale, :locale => locale %> <% end %> <hr /> </div> <div id="sidebar" class="grid_3"> <%= yield :sidebar %> </div> <div id="main" class="grid_13"> <%= yield %> </div> </div> <%= javascript_tag do %> $(document).ready(function() { /* Activating Best In Place */ jQuery(".best_in_place").best_in_place() }); <% end %> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
interpret-0.1.3 | app/views/layouts/interpret.html.erb |
interpret-0.1.2 | app/views/layouts/interpret.html.erb |
interpret-0.1.1 | app/views/layouts/interpret.html.erb |