Added a favicon and tweaked the .current class

This commit is contained in:
Bram van der Veen 2015-08-17 11:25:10 +02:00
parent b5eb358f39
commit 954e85c37c
4 changed files with 7 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -4,11 +4,11 @@ html
meta(name='viewport', content='width=device-width, user-scalable=no') meta(name='viewport', content='width=device-width, user-scalable=no')
meta(name="Description", content="De beste roostersite voor de leerlingen van Werkman Stadslyceum!") 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/skeleton.css", type="text/css")
link(rel="stylesheet", href="/css/style.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="http://code.jquery.com/jquery-1.11.3.min.js")
script(type="text/javascript", src="/js/script.js") script(type="text/javascript", src="/js/script.js")
script(type="text/javascript"). script(type="text/javascript").

View file

@ -307,6 +307,10 @@ div.schedule {
background-color: #0C5489; background-color: #0C5489;
color: #FFF; color: #FFF;
text-shadow: 0px -1px 0px #020000; text-shadow: 0px -1px 0px #020000;
.time {
color: #E1E1E1;
}
} }
&.title { &.title {

1
web.js
View file

@ -40,6 +40,7 @@ app.locals.time = time;
app.use('/css', less(__dirname + '/resources/less')); app.use('/css', less(__dirname + '/resources/less'));
app.use('/js', express.static(__dirname + '/resources/js')); app.use('/js', express.static(__dirname + '/resources/js'));
app.use('/other', express.static(__dirname + '/resources/other')); app.use('/other', express.static(__dirname + '/resources/other'));
app.use('/images', express.static(__dirname + '/resources/images'));
//Initialising homepage. //Initialising homepage.
app.get('/', auth.is, function (req, res) { app.get('/', auth.is, function (req, res) {