This commit is contained in:
codepupper 2019-12-09 16:24:08 +01:00
parent c597a20d00
commit 98120b7962
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;