Sha256: 1fc8ef1d03f193e4fe240714db9d95f23550143f0e814f4f7808643b0525ca9a
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title><%= @run_id %> interfaces</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <style type="text/css"> .row { margin-bottom: 20px; } </style> </head> <body> <!-- Content --> <div class="container"> <div class="page-header"> <% if @run_id == @project_name %> <h1>Welcome to <em><%= @project_name %></em></h1> <% else %> <h1>Welcome to <em><%= @project_name %></em>, run <em><%= @run_id %></em></h1> <% end %> <p class="lead">Click on the buttons to launch the intereface</p> </div> <% @interfaces.each do |i| %> <div class="row"> <div class="col-xs-1 col-sm-1 col-lg-1"><a href="<%= i[:url] %>" target="_blank" type="button" class="btn btn-danger">Launch!</a></div> <div class="col-xs-2 col-sm-2 col-lg-2 text-center"><strong><%= i[:name] %></strong></div> <div class="col-xs-9 col-sm-9 col-lg-9"><%= i[:description] %></div> </div> <% end %> </div> <!-- Scripts --> <script> </script> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems