Skip to content

Commit

Permalink
update layout
Browse files Browse the repository at this point in the history
  • Loading branch information
vipworld committed Sep 12, 2012
1 parent 9c9506d commit 29e2058
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion www/app.ms
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ module.exports = #(server, config) {
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
Expand Down
Binary file removed www/public/images/shortcut.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions www/public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ body.plain {
display: block;
text-align: center;
}
.nav-right {
padding: 10px 15px;
display: block;
}
4 changes: 2 additions & 2 deletions www/views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ html
title Upbeat
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/bootstrap/css/bootstrap.min.css')
link(rel='icon', href='/images/shortcut.ico')
link(rel='icon', href='/images/favicon.ico')

script(src='/javascripts/jquery.js')
script(src='/bootstrap/js/bootstrap.min.js')
Expand All @@ -21,10 +21,10 @@ html
a.brand(href="/", title="upbeat")
img(src="/images/upbeat_small.png")
.nav-collapse.collapse
.pull-right: span.nav-right.text-info= "Uptime: " + process.uptime() + " secs";
ul.nav
li: a(href="/services") Services
li: a(href="/stats") Stats
li: a(href="#")= "Uptime: " + process.uptime() + " secs";

.container-fluid
unless query.plain
Expand Down

0 comments on commit 29e2058

Please sign in to comment.