Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankerZ committed Aug 12, 2014
1 parent 5c9ce07 commit fa599d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,17 +302,17 @@ app.use(express.logger('dev'))

app.use(express.static(__dirname + '/public'))

app.get('/', function (req, res) { //get index and renders it
app.get('/old', function (req, res) { //get index and renders it
res.render('index',
{ title : 'Home' }
)
})

app.get('/test', function (req, res) {
app.get('/', function (req, res) {
res.render('test',
{ title : 'Home' }
)
})


app.listen(3000)
app.listen(80)
2 changes: 1 addition & 1 deletion views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ html
<input class="check" type="checkbox" id="rprogBox" ng-model="rprog" name="check" checked/>
<label class = "box"><strong>/r/programming</strong></label>
</div>

<hr><p style="font-size:small";>make sure to play with the radio buttons

#container

Expand Down

0 comments on commit fa599d0

Please sign in to comment.