forked from GitHub/dbot
Index page
This commit is contained in:
parent
806f9556bf
commit
befc20e713
@ -9,8 +9,8 @@ var webInterface = function(dbot) {
|
|||||||
app.set('view engine', 'jade');
|
app.set('view engine', 'jade');
|
||||||
|
|
||||||
app.get('/', function(req, res) {
|
app.get('/', function(req, res) {
|
||||||
res.redirect('/quotes');
|
//res.redirect('/quotes');
|
||||||
//res.render('index', { });
|
res.render('index', { 'name': dbot.name });
|
||||||
});
|
});
|
||||||
|
|
||||||
// Lists the quote categories
|
// Lists the quote categories
|
||||||
|
@ -77,6 +77,24 @@ a,a:active,a:visited {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Index Page */
|
||||||
|
#modulelinks {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.module {
|
||||||
|
display: inline-block;
|
||||||
|
width: 45%;
|
||||||
|
padding: 15px 0;
|
||||||
|
margin: 0 2%;
|
||||||
|
background: #F5F5F5;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
.module:hover {
|
||||||
|
background: #BBB;
|
||||||
|
}
|
||||||
|
|
||||||
ul#quotelist {
|
ul#quotelist {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
div#main
|
#modulelinks
|
||||||
p
|
a.module(href='/quotes') Quotes
|
||||||
a(href: '/quotes') Quotes
|
a.module(href='/polls') Polls
|
||||||
|
Loading…
Reference in New Issue
Block a user