summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjors van den Boomen <s.v.d.boomen@student.tue.nl>2015-04-08 11:01:35 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-04-08 11:01:35 +0200
commit4d338cf4d5694f6f8cea455e0f5ff47be8b8acdc (patch)
tree9376f6a41b1cfaa39ed40f5684f5ef14330c4717
parent06fd727d053ae88d3ef9568cc2bcd11c07467dff (diff)
downloadsite-4d338cf4d5694f6f8cea455e0f5ff47be8b8acdc.tar.gz
Add contact page
-rw-r--r--index.html2
-rw-r--r--js/main.js2
-rw-r--r--pages/contact.html9
3 files changed, 11 insertions, 2 deletions
diff --git a/index.html b/index.html
index ab93cb4..22fba1d 100644
--- a/index.html
+++ b/index.html
@@ -42,7 +42,7 @@ setTimeout(function() {
<footer>
<p>
-Contact: ...
+<a href="#/contact">Contact</a>
<a href="#/disclaimer">Disclaimer</a>
</p>
diff --git a/js/main.js b/js/main.js
index 7ae3fc1..34ba9fe 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 disclaimer'.split(' ');
+ var all_pages = 'home studying curriculum campus career disclaimer contact'.split(' ');
var cacheBuster = '';
if (/dev/.test(location.search)) {
diff --git a/pages/contact.html b/pages/contact.html
new file mode 100644
index 0000000..92953c5
--- /dev/null
+++ b/pages/contact.html
@@ -0,0 +1,9 @@
+<h2>Contact</h2>
+<p>If you are looking for more information about Data Science, the TU/e or
+studying in Eindhoven, feel free to visit <a
+href="https://www.facebook.com/TU.Eindhoven?fref=ts">Facebook</a>, <a
+href="https://twitter.com/TUeindhoven">Twitter</a> or the <a
+href="http://www.tue.nl">TU/e website</a>. It is also possible to contact the
+<a href="mailto:studadm.win@TUE.nl">student administration</a> with further
+questions.
+</p>