diff --git a/src/_data/author.json b/src/_data/author.json index 96533a7..da292ef 100644 --- a/src/_data/author.json +++ b/src/_data/author.json @@ -1,7 +1,10 @@ { - "name": "Thomas", + "firstName": "Thomas", + "name": "Amstutz", "mail": "thomas@amstutz.it", "phone": "", + "occupation": "Développeur web", + "location": "Delémont, JU", "about": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Distinctio doloribus, iure eum nostrum error tempora facilis ea.", "skills": [ "HTML", diff --git a/src/_includes/partials/metas.html b/src/_includes/partials/metas.html index 393ea9b..e029eeb 100644 --- a/src/_includes/partials/metas.html +++ b/src/_includes/partials/metas.html @@ -1,4 +1,4 @@ -{% assign pageTitle = title | append: ' - ' | append: site.title %} +{% assign pageTitle = author.firstName | append: ' ' | append: author.name | append: ' - ' | append: author.occupation | append: ' à ' | append: author.location %} {% if site.title == title %} {% assign pageTitle = title %} diff --git a/src/pages/sections/hero.liquid b/src/pages/sections/hero.liquid index 830b0fd..887610f 100644 --- a/src/pages/sections/hero.liquid +++ b/src/pages/sections/hero.liquid @@ -4,5 +4,5 @@ order: 0 template: 'hero' eleventyComputed: description: "{{ author.about }}" - displayedTitle: "Moi c'est {{ author.name }}
Et je suis développeur web" + displayedTitle: "Moi c'est {{ author.firstName }}
Et je suis {{ author.occupation }}" --- \ No newline at end of file