forked from saucelabs/the-internet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.erb
47 lines (46 loc) · 1.73 KB
/
layout.erb
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
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<html>
<head>
<script src="/js/vendor/298279967.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>The Internet</title>
<link href="/css/app.css" rel="stylesheet">
<link href="/css/font-awesome.css" rel="stylesheet">
<script src="/js/vendor/jquery-1.11.3.min.js"></script>
<script src="/js/vendor/jquery-ui-1.11.4/jquery-ui.js"></script>
<script src="/js/foundation/foundation.js"></script>
<script src="/js/foundation/foundation.alerts.js"></script>
<script>
$(document).foundation();
</script>
</head>
<body>
<div class="row">
<div id="flash-messages" class="large-12 columns">
<% %w[notice error success].each do |type| %>
<% if flash[type.to_sym] %>
<div data-alert id='flash' class='flash <%= type %>'>
<%= flash[type.to_sym] %>
<a href="#" class="close">×</a>
</div>
<% end %>
<% end %>
</div>
</div>
<div class="row">
<a href="https://github.com/tourdedave/the-internet"><img style="position: absolute; top: 0; right: 0; border: 0;" src="/img/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<div id="content" class="large-12 columns">
<%= yield %>
</div>
</div>
<div id='page-footer' class="row">
<div class="large-4 large-centered columns">
<hr>
<div style="text-align: center;">Powered by <a target="_blank" href="http://elementalselenium.com/">Elemental Selenium</a></div>
</div>
</div>
</body>
</html>