diff --git a/resources/images/favicon.png b/resources/images/favicon.png index 7a3c81c..aa103fd 100644 Binary files a/resources/images/favicon.png and b/resources/images/favicon.png differ diff --git a/resources/jade/header.jade b/resources/jade/header.jade index a4e484e..4df7796 100644 --- a/resources/jade/header.jade +++ b/resources/jade/header.jade @@ -4,11 +4,11 @@ html meta(name='viewport', content='width=device-width, user-scalable=no') meta(name="Description", content="De beste roostersite voor de leerlingen van Werkman Stadslyceum!") - link(rel="search" type="application/opensearchdescription+xml" href="/resources/opensearch.xml" title="Rooster zoeken") + link(rel="icon", type="image/png", href="/images/favicon.png") + link(rel="search", type="application/opensearchdescription+xml", href="/other/opensearch.xml", title="Rooster zoeken") link(rel="stylesheet", href="/css/skeleton.css", type="text/css") link(rel="stylesheet", href="/css/style.css", type="text/css") - script(type="text/javascript", src="http://code.jquery.com/jquery-1.11.3.min.js") script(type="text/javascript", src="/js/script.js") script(type="text/javascript"). diff --git a/resources/less/style.less b/resources/less/style.less index b5446b4..dc9e881 100644 --- a/resources/less/style.less +++ b/resources/less/style.less @@ -307,6 +307,10 @@ div.schedule { background-color: #0C5489; color: #FFF; text-shadow: 0px -1px 0px #020000; + + .time { + color: #E1E1E1; + } } &.title { diff --git a/web.js b/web.js index e3e5d7c..e85dd4d 100644 --- a/web.js +++ b/web.js @@ -40,6 +40,7 @@ app.locals.time = time; app.use('/css', less(__dirname + '/resources/less')); app.use('/js', express.static(__dirname + '/resources/js')); app.use('/other', express.static(__dirname + '/resources/other')); +app.use('/images', express.static(__dirname + '/resources/images')); //Initialising homepage. app.get('/', auth.is, function (req, res) {