3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

Removed sass compiler usage from web.js, updated jade templates to use blocks

This commit is contained in:
Daniel Evans 2012-12-24 04:06:04 +00:00
parent cf53413bff
commit 88d2abab58
10 changed files with 97 additions and 74 deletions

View File

@ -2,9 +2,8 @@ var express = require('express');
var webInterface = function(dbot) {
var pub = 'public';
var app = express.createServer();
var app = express();
app.use(express.compiler({ src: pub, enable: ['sass'] }));
app.use(express.static(pub));
app.set('view engine', 'jade');

View File

@ -1,3 +1,6 @@
extends layout
block content
h3 Channels on #{connection}
div#backlink
a(href='/connections') « Connection List

View File

@ -1,3 +1,6 @@
extends layout
block content
h3 Current Connections
div#backlink
a(href='/') « Home

View File

@ -1,3 +1,6 @@
extends layout
block content
#modulelinks
a.module(href='/quotes') Quotes
a.module(href='/polls') Polls

View File

@ -9,5 +9,5 @@ html(lang='en')
div#title
a(href='/') #{name} web interface
div#main
!{body}
block content
script(type="text/javascript", src="/script.js")

View File

@ -1,3 +1,6 @@
extends layout
block content
div#backlink
a(href='/') « Home
div#controls

View File

@ -1,3 +1,6 @@
extends layout
block content
div#backlink
a(href='/') « Home
div#controls

View File

@ -1,3 +1,6 @@
extends layout
block content
div#backlink
a(href='/quotes/') « Quote list
ul#quotelist

View File

@ -1,3 +1,6 @@
extends layout
block content
h3 #{user}'s profile
div#backlink
a(href='/users/'+connection+'/'+channel.substr(1,channel.length)) « #{channel} Nick List

View File

@ -1,3 +1,6 @@
extends layout
block content
h3 Users currently in #{channel} on #{connection}
div#backlink
a(href='/channels/'+connection) « Channel List