This commit is contained in:
monty 2019-12-09 16:25:04 +01:00
commit fbb144e8f6
2 changed files with 13 additions and 0 deletions

BIN
assets/.DS_Store vendored

Binary file not shown.

View File

@ -15,4 +15,17 @@ portfolio.get('/', (req, res) => {
});
});
portfolio.get('/art', (req, res) => {
res.render('artwork', {
layout: 'artwork',
name: `${con.name} - artwork`,
host: req.hostname
/* portfolio: [
{ name: 'thaldrin', source: 'https://gitdab.com/r/thaldrin' },
{ name: 'homepage', source: 'https://gitdab.com/y/website' },
{ name: 'yiff', source: 'https://github.com/codepupper/yiff' }
] */
});
});
module.exports = portfolio;