1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/web/views/layout.slim
Ezekiel Templin d97300c4ab Cleanup navigation for smaller screens
* Navbar becomes accordion when window width is <= 980px
2012-06-20 03:38:16 -04:00

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"