summaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
Diffstat (limited to 'routes')
-rw-r--r--routes/routes.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/routes/routes.js b/routes/routes.js
index 6889f74..a372e1c 100644
--- a/routes/routes.js
+++ b/routes/routes.js
@@ -10,18 +10,18 @@ module.exports = function(express,app,fs,os,io,PythonShell,scriptPath){
});
- router.get('/index',function(req,res,next){
+ router.get('/ngspice/index',function(req,res,next){
res.render('index',{host:app.get('host'),title:'Ngspice Simulator'});
});
/*About Page*/
- router.get('/about',function(req,res,next){
+ router.get('/ngspice/about',function(req,res,next){
res.render('about',{title:'Ngspice Simulator'});
});
/*Contact Page*/
- router.get('/contact',function(req,res,next){
+ router.get('/ngspice/contact',function(req,res,next){
res.render('contact',{title:'Ngspice Simulator'});
});