Move academic honesty policy from wiki to main site

This commit is contained in:
Quincy Larson
2016-02-13 16:32:14 -08:00
parent 3110aed946
commit e417a363ab
2 changed files with 22 additions and 1 deletions

View File

@ -37,6 +37,8 @@ module.exports = function(app) {
router.get('/terms', terms);
router.get('/privacy', privacy);
router.get('/code-of-conduct', codeOfConduct);
router.get('/academic-honesty', academicHonesty);
router.get(
'/the-fastest-web-page-on-the-internet',
theFastestWebPageOnTheInternet
@ -175,7 +177,7 @@ module.exports = function(app) {
function privacy(req, res) {
res.render('resources/privacy', {
title: 'Privacy'
title: "Privacy policy"
});
}
@ -185,6 +187,12 @@ module.exports = function(app) {
});
}
function academicHonesty(req, res) {
res.render('resources/academic-honesty', {
title: 'Academic Honesty policy'
});
}
function theFastestWebPageOnTheInternet(req, res) {
res.render('resources/the-fastest-web-page-on-the-internet', {
title: 'This is the fastest web page on the internet'