diff --git a/cobrateam_tests.py b/cobrateam_tests.py
index 9205803..a31cc0f 100644
--- a/cobrateam_tests.py
+++ b/cobrateam_tests.py
@@ -10,19 +10,7 @@ def setUp(self):
def test_index(self):
request = self.app.get('/')
- assert 'Dorgas Manolo' in request.data
+ assert 'Projects' in request.data
- def test_staff(self):
- request= self.app.get('/staff')
- assert 'Team' in request.data
-
- def test_challenges(self):
- request= self.app.get('/challenges')
- assert 'challenges' in request.data
-
- def test_contact(self):
- request= self.app.get('/contact')
- assert 'contact' in request.data
-
if __name__ == '__main__':
unittest.main()
diff --git a/index.py b/index.py
index 66ccdb0..9c82a44 100644
--- a/index.py
+++ b/index.py
@@ -6,17 +6,5 @@
def index():
return render_template("index.html")
-@app.route("/staff")
-def staff():
- return render_template("staff.html")
-
-@app.route("/challenges")
-def challenges():
- return render_template("challenges.html")
-
-@app.route("/contact")
-def contact():
- return render_template("contact.html")
-
if __name__ == "__main__":
app.run(debug=True)
diff --git a/templates/base.html b/templates/base.html
index b5f7423..ebb8e6c 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -7,17 +7,30 @@
+
+ Projects
+ - jailbreakerz - casual game developed in python
+ - wifimap - search and share wifipoints
+ - magic2d - framework for building 2D games using html5 canvas and javascript
+ - zeuda - mmo game, in node.js and html5 canvas
+ - eizzek - simple g-talk bot
+
+
{% block content %}{% endblock %}