mirror of
https://github.com/les-briques-du-web/les-briques-du-web-website.git
synced 2026-03-10 08:51:22 +00:00
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
/**
|
||
* @file Contains global data about the site author
|
||
* @author Reuben L. Lillie <reubenlillie@gmail.com>
|
||
* @author Horacio Gonzalez <horacio.gonzalez@gmail.com>
|
||
*/
|
||
|
||
// Edit the values for the properties in this file to fit your site.
|
||
// You can add as many new properties as you want,
|
||
// but you shouldn’t remove any of the ones already included here
|
||
// without also editing the files where those properties are used.
|
||
// Otherwise, the site will probably break.
|
||
|
||
/**
|
||
* Global author data module
|
||
* @module _data/author
|
||
* @see {@link https://www.11ty.dev/docs/data-global/ Global data files in 11ty}
|
||
*/
|
||
export default {
|
||
name: {
|
||
fullName: 'Horacio Gonzalez',
|
||
givenName: 'Horacio',
|
||
surname: 'Gonzalez'
|
||
},
|
||
social: {
|
||
// Add or remove accounts for social media platforms
|
||
accounts: [
|
||
{
|
||
name: 'GitHub',
|
||
url: 'https://github.com/LostInBrittany/'
|
||
},
|
||
{
|
||
name: 'GitLab',
|
||
url: 'https://gitlab.com/LostInBrittany/'
|
||
},
|
||
{
|
||
name: 'Instagram',
|
||
url: 'https://www.instagram.com/LostInBrittany/'
|
||
},
|
||
{
|
||
name: 'LinkedIn',
|
||
url: 'https://linkedin.com/in/horaciogonzalez/'
|
||
},
|
||
{
|
||
name: 'Twitter',
|
||
url: 'https://twitter.com/LostInBrittany/'
|
||
}
|
||
]
|
||
}
|
||
}
|