mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
d97300c4ab
* Navbar becomes accordion when window width is <= 980px
35 lines
1,008 B
Text
35 lines
1,008 B
Text
doctype html
|
|
html
|
|
head
|
|
link href='#{{root_path}}assets/application.css' media='screen' rel='stylesheet' type='text/css'
|
|
title Sidekiq
|
|
body
|
|
.navbar.navbar-fixed-top
|
|
.navbar-inner
|
|
.container
|
|
a.btn.btn-navbar data-toggle="collapse" data-target=".nav-collapse"
|
|
span.icon-bar
|
|
span.icon-bar
|
|
span.icon-bar
|
|
a.brand href='#{{root_path}}'
|
|
| Sidekiq
|
|
div.nav-collapse
|
|
ul.nav
|
|
li
|
|
a href='#{{root_path}}' Home
|
|
li
|
|
a href='#{{root_path}}queues' Queues
|
|
li
|
|
a href='#{{root_path}}retries' Retries
|
|
li
|
|
a href='#{{root_path}}scheduled' Scheduled
|
|
ul.nav.pull-right
|
|
li
|
|
a Redis: #{location}
|
|
li
|
|
a #{Time.now.utc}
|
|
|
|
.container
|
|
== yield
|
|
|
|
script type="text/javascript" src="#{{root_path}}assets/application.js"
|