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

Commit

Permalink
Merge branch 'master' of https://github.com/frankcash/HackerQueue
Browse files Browse the repository at this point in the history
Conflicts:
	app.js
  • Loading branch information
Frank Cash committed Aug 12, 2014
2 parents daa2a64 + fa599d0 commit 3ca6647
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,14 @@ app.use(express.logger('dev'))

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


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


app.get('/', function (req, res) {
res.render('test',
{ title : 'Home' }
Expand Down
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>


#container

Expand Down

0 comments on commit 3ca6647

Please sign in to comment.