Sha256: 1ae79e23180356437810435a8e28f516dffcb1b8bb23e10cdecf3d5243ca3931
Contents?: true
Size: 1.89 KB
Versions: 7
Compression:
Stored size: 1.89 KB
Contents
<!DOCTYPE html> <html class="no-js" lang="en"> <head> <title>OpsAsk</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="//fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" /> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" href="/css/foundation.css" /> <link rel="stylesheet" href="/css/style.css" /> <link rel="shortcut icon" href="favicon.ico" /> <script src="/js/vendor/modernizr.js"></script> </head> <body> <div id="content-wrap" class="row <%= 'ops' if ops? %>"> <div id="content" class="small-12 columns"> <%= partial :flash, locals: { type: :notice, style: :success } %> <%= partial :flash, locals: { type: :error, style: :alert } %> <% if logged_in? %> <%= yield %> <% else %> <section id="ops-ask" class="small-4 small-offset-4 columns"> <h2> </h2> <h3 class="need-to-login-to-jira">Sorry, auth required</h3> <p class="need-to-login-to-jira">If you'd like to view the queues and submit new issues please <a href="/login">authorize with JIRA</a> first.</p> </section> <% end %> </div> </div> <div id="indicators"> <% unless untracked_jiras.empty? %> <div id="untracked-indicator"> <span class="alert label radius"><a href="/untracked"><%= untracked_jiras.length %> untracked</a></span> </div> <% end %> <% unless stragglers.empty? %> <div id="straggling-indicator"> <span class="alert label radius"><a href="/stragglers"><%= pluralize stragglers.length, 'straggler' %></a></span> </div> <% end %> </div> <script src="/js/vendor/jquery.js"></script> <script src="/js/opsask.js"></script> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems