11
0
Fork 0
mirror of https://github.com/ChaosChemnitz/interfug16 synced 2025-07-08 15:56:06 +02:00

first commit

This commit is contained in:
Felix Bytow 2016-05-08 22:08:14 +02:00
commit e0f91d6fd5
12 changed files with 204 additions and 0 deletions

12
routes/index.js Normal file
View file

@ -0,0 +1,12 @@
'use strict';
var express = require('express');
var router = express.Router();
router.get('/', function(req, res) {
res.render('index', {
title: 'Interfug16'
});
});
module.exports = router;