diff --git a/assets/.DS_Store b/assets/.DS_Store index 40d16bf..3ebb755 100644 Binary files a/assets/.DS_Store and b/assets/.DS_Store differ diff --git a/routes/portfolio.js b/routes/portfolio.js index d86fc31..a6443ff 100644 --- a/routes/portfolio.js +++ b/routes/portfolio.js @@ -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;