@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix knows:  <https://data.knows.idlab.ugent.be/person/office/#> .
@prefix schema: <http://schema.org/> .

<#me> a foaf:Person ;
  schema:name "Gilles Vandewiele";
  foaf:givenName "Gilles"@en ;
  foaf:familyName "Vandewiele"@en ;
  vcard:title "Postdoctoral Researcher" ;
  foaf:mbox <mailto:gilles.vandewiele@ugent.be> ;
  foaf:img <profile.jpeg> .

<#me> foaf:account [
  a knows:GitHubAccount ;
  foaf:accountName "GillesVandewiele" ;
  foaf:accountServiceHomepage <https://github.com/> ] .
