application.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(HTM) git clone git://jay.scot/warvox
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
application.html.erb (1384B)
---
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title><%= content_for?(:title) ? yield(:title) : "WarVOX v#{WarVOX::VERSION}" %></title>
8 <%= csrf_meta_tags %>
9
10 <!--[if lt IE 9]>
11 <%= javascript_include_tag "html5" %>
12 <![endif]-->
13
14 <%= javascript_include_tag "application" %>
15
16 <%= yield :view_javascript %>
17 <%= stylesheet_link_tag "application", :media => "all" %>
18
19 <%= yield :view_stylesheets %>
20 <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %>
21 <%= javascript_tag do %>
22 $(document).ready(function() {
23
24 $(".xtooltip").tooltip();
25
26 $(".xpopover").popover({
27 html: true,
28 placement: 'right',
29 trigger: 'hover',
30 delay: { show: 300, hide: 300 },
31 animation: false,
32 });
33 });
34 <% end %>
35 </head>
36 <body>
37 <%= render 'nav' %>
38 <div class="container" id="main">
39 <div class="row">
40 <div class="span12">
41 <div class="content">
42
43 <p style="color: green"><%= flash[:notice] %></p>
44 <%= yield %>
45 </div>
46
47 <footer class="footer">
48 <p>WarVOX v<%=WarVOX::VERSION %> © 2009-<%= Time.now.year %> Rapid7, Inc</p>
49 </footer>
50
51 </div>
52 </div>
53 </div> <!-- /container -->
54
55 </body>
56 </html>