10
0
Fork 0
mirror of https://github.com/ChaosChemnitz/interfug16 synced 2024-06-06 22:46:24 +02:00
interfug16_github/routes/index.js

13 lines
210 B
JavaScript
Raw Normal View History

2016-05-08 22:08:14 +02:00
'use strict';
var express = require('express');
var router = express.Router();
router.get('/', function(req, res) {
res.render('index', {
title: 'Interfug16'
});
});
module.exports = router;