Files
les-briques-du-web-website/_data/author.js
Horacio Gonzalez 286a9d0d93 Initial commit
2021-05-05 11:22:00 +02:00

50 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* @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 shouldnt 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/'
}
]
}
}