summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjors van den Boomen <s.v.d.boomen@student.tue.nl>2015-03-25 13:58:48 +0100
committerPeter Wu <peter@lekensteyn.nl>2015-03-25 13:59:09 +0100
commitd144032108a36c8ac61d1f1edc490feb79ded31d (patch)
treefb27df58589db152cfabef39442c884241b2cf94
parent9ba6ebc07b692b16a5f5c8d3ae8a5d3bf807754f (diff)
downloadsite-d144032108a36c8ac61d1f1edc490feb79ded31d.tar.gz
Add disclaimer and logo
-rw-r--r--images/logo-tue.pngbin0 -> 10547 bytes
-rw-r--r--index.html10
-rw-r--r--js/main.js2
-rw-r--r--pages/disclaimer.html7
4 files changed, 14 insertions, 5 deletions
diff --git a/images/logo-tue.png b/images/logo-tue.png
new file mode 100644
index 0000000..5c17fdc
--- /dev/null
+++ b/images/logo-tue.png
Binary files differ
diff --git a/index.html b/index.html
index ece18ee..ab93cb4 100644
--- a/index.html
+++ b/index.html
@@ -22,9 +22,10 @@ setTimeout(function() {
<body>
<header>
- <p>
- HIER KOMT DA SUPER MOOIE BANNER EN LOGO
- </p>
+ <div class="banner">
+ <img src="images/logo-tue.png" height="75" alt="Logo">
+ <span>Data Science!</span>
+ </div>
<nav>
<ul>
<li><a href="#/home">Home</a></li>
@@ -41,8 +42,9 @@ setTimeout(function() {
<footer>
<p>
-Contact:<br>
+Contact: ...
+<a href="#/disclaimer">Disclaimer</a>
</p>
</footer>
<script data-main="js/boot" src="lib/require.js"></script>
diff --git a/js/main.js b/js/main.js
index f3a59a4..66d5be4 100644
--- a/js/main.js
+++ b/js/main.js
@@ -1,7 +1,7 @@
define(function() {
'use strict';
- var all_pages = 'home studying curriculum campus career'.split(' ');
+ var all_pages = 'home studying curriculum campus career disclaimer'.split(' ');
var cacheBuster = '';
if (/dev/.test(location.search)) {
diff --git a/pages/disclaimer.html b/pages/disclaimer.html
new file mode 100644
index 0000000..c27e5b8
--- /dev/null
+++ b/pages/disclaimer.html
@@ -0,0 +1,7 @@
+<h2>Disclaimer</h2>
+<p>
+ This website is created as part of the course DBL Hypermedia (2IO80)
+ and consists of a fictive Data Science programme.
+ This is not an existing TU/e bachelor programme and is not affiliated with
+ any TU/e programme.
+</p>