a few little redesigns for some stuff

This commit is contained in:
monty 2019-12-09 20:48:19 +01:00
parent 9a4cb7bd26
commit ae69b0aa79
12 changed files with 185 additions and 69 deletions

View file

@ -7,24 +7,13 @@ portfolio.get('/', (req, res) => {
layout: 'portfolio',
name: `${con.name} - portfolio`,
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' }
]
});
});
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' }
] */
portfolio: {
code: [
{ name: 'thaldrin', source: 'https://gitdab.com/r/thaldrin' },
{ name: 'website', source: 'https://gitdab.com/y/website' },
{ name: 'yiff', source: 'https://github.com/codepupper/yiff' }
]
}
});
});