forked from GitHub/dbot
Merge pull request #5 from ziaix/web
Started improving the web interface.
This commit is contained in:
commit
3068d6120d
@ -11,10 +11,17 @@ 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.render('index', { });
|
res.redirect('/quotes');
|
||||||
|
//res.render('index', { });
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/quotes', function(req, res) {
|
||||||
|
// Lists the quote categories
|
||||||
|
res.render('quotelist', { 'quotelist': Object.keys(dbot.db.quoteArrs) });
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/quotes/:key', function(req, res) {
|
app.get('/quotes/:key', function(req, res) {
|
||||||
|
// Lists the quotes in a category
|
||||||
var key = req.params.key.toLowerCase();
|
var key = req.params.key.toLowerCase();
|
||||||
if(dbot.db.quoteArrs.hasOwnProperty(key)) {
|
if(dbot.db.quoteArrs.hasOwnProperty(key)) {
|
||||||
res.render('quotes', { 'quotes': dbot.db.quoteArrs[key] });
|
res.render('quotes', { 'quotes': dbot.db.quoteArrs[key] });
|
||||||
@ -23,8 +30,8 @@ var webInterface = function(dbot) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/quotes', function(req, res) {
|
app.get('/css', function(req, res) {
|
||||||
res.render('quotelist', { 'quotes': Object.keys(dbot.db.quoteArrs) });
|
res.render('styles.scss', { layout: false });
|
||||||
});
|
});
|
||||||
|
|
||||||
app.listen(443);
|
app.listen(443);
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
html(lang: 'en')
|
html(lang: 'en')
|
||||||
head
|
head
|
||||||
meta(charset: 'utf-8')
|
meta(charset: 'utf-8')
|
||||||
title depressionbot web interface
|
link(rel: 'stylesheet', type: 'text/css', href: '/css')
|
||||||
|
title Depressionbot web interface
|
||||||
body
|
body
|
||||||
div#title depressionbot web interface
|
div#title Depressionbot web interface
|
||||||
!{body}
|
!{body}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
ul#quotes
|
div#quotelist
|
||||||
-each quote in quotes
|
-each quote in quotelist
|
||||||
li
|
div.category
|
||||||
a(href='/quotes/' + quote) #{quote}
|
a(href='/quotes/' + quote) #{quote}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
ul#quotes
|
div.quotes
|
||||||
-each quote in quotes
|
-each quote in quotes
|
||||||
li #{quote}
|
div.quote #{quote}
|
||||||
|
65
views/styles.scss
Normal file
65
views/styles.scss
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
/* #quotelist {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quotes {
|
||||||
|
border-left: 2px solid red;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote {
|
||||||
|
border-left: 2px solid blue;
|
||||||
|
} */
|
||||||
|
|
||||||
|
html {
|
||||||
|
background: url(http://dl.dropbox.com/u/13375195/depressionbot/images/background.jpg) no-repeat center center fixed;
|
||||||
|
-webkit-background-size: cover;
|
||||||
|
-moz-background-size: cover;
|
||||||
|
-o-background-size: cover;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding: 30px;
|
||||||
|
font-size: 46px;
|
||||||
|
font-family: "Lucida Grande";
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 0;
|
||||||
|
color: black;
|
||||||
|
text-shadow: 1px 1px 2px #2B2B2B;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
width: 600px;
|
||||||
|
height: 150px;
|
||||||
|
margin: 25px auto;
|
||||||
|
display: block;
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 0 20px black;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 15px;
|
||||||
|
opacity: 0.5;
|
||||||
|
color: #12699B;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
a span {
|
||||||
|
position: relative;
|
||||||
|
top: -60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
background: url(http://dl.dropbox.com/u/13375195/depressionbot/images/null.png);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user