feat: timeline, add username
This commit is contained in:
parent
8c83e0b84c
commit
89de987569
|
@ -36,7 +36,10 @@
|
|||
<div :key="'desc-icon-'+proj.name" class='desc-icon'>
|
||||
<img src='../assets/timeline/info.svg' />
|
||||
</div>
|
||||
<div :key="'desc-'+proj.name" class='desc' v-html='proj.info[$i18n.locale]'></div>
|
||||
<div :key="'desc-'+proj.name" class='desc'>
|
||||
<div class='user'>{{ $t('project.username') }}</div>
|
||||
<p v-html='proj.info[$i18n.locale]'/>
|
||||
</div>
|
||||
|
||||
<template v-if='proj.source != null'>
|
||||
<template v-for='(src, i) in proj.source'>
|
||||
|
@ -535,6 +538,23 @@ export default class Timeline extends Vue {
|
|||
top: 1.2em;
|
||||
left: 1.2em;
|
||||
}
|
||||
|
||||
.user {
|
||||
margin-bottom: 1em;
|
||||
|
||||
width: 100%;
|
||||
height: 2em;
|
||||
|
||||
background: url('../assets/home/logo.svg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto 90%;
|
||||
background-position: 0 center;
|
||||
|
||||
text-align: left;
|
||||
text-indent: 2.5em;
|
||||
line-height: 2em;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.src, .doc, .end {
|
||||
|
|
|
@ -4,10 +4,11 @@
|
|||
"home.line2-1": "I made this website so you can",
|
||||
"home.line2-2": "browse",
|
||||
"home.line2-3": "some of my skills and projects.",
|
||||
"home.line3": "After 50+ projects since I started IT back in 2010, I still work hard for making projects maintainable so they last and can evolve.",
|
||||
"home.line4-1": "For now, my technologies of choice are : ",
|
||||
"home.line4-2": "and",
|
||||
"home.line4-3": "(Arduino, Raspberry).",
|
||||
"home.line3": "TODO",
|
||||
"home.line4": "TODO",
|
||||
"home.line5-1": "For now, my technologies of choice are : ",
|
||||
"home.line5-2": "and",
|
||||
"home.line5-3": "(Arduino, Raspberry).",
|
||||
|
||||
"timeline.title": "Timeline of projects featuring",
|
||||
"timeline.back": "Change skill",
|
||||
|
@ -94,6 +95,7 @@
|
|||
"project.doc": "Documentation at",
|
||||
"project.end": "Project stopped in",
|
||||
"project.still": "Project still active",
|
||||
"project.username": "Adrien Marquès",
|
||||
|
||||
"end": ""
|
||||
}
|
|
@ -1,13 +1,14 @@
|
|||
{
|
||||
"home.title": "DÉVELOPPEUR FREELANCE",
|
||||
"home.line1": "Hello, je suis un développeur freelance de plus !",
|
||||
"home.line2-1": "J'ai mis en place ce site afin de pouvoir",
|
||||
"home.line1": "Hello, je suis développeur freelance !",
|
||||
"home.line2-1": "J'ai développé ce site afin de vous permettre de",
|
||||
"home.line2-2": "parcourir",
|
||||
"home.line2-3": "certaines de mes compétences et projets.",
|
||||
"home.line3": "Avec 50+ projets depuis que j'ai démarré le dev en 2010, je suis toujours très attentif à rendre les projets maintenables afin qu'ils durent et puissent évoluer.",
|
||||
"home.line4-1": "Pour le moment, les technologies qui m'intéressent sont : le",
|
||||
"home.line4-2": "et l'",
|
||||
"home.line4-3": "(Arduino, Raspberry).",
|
||||
"home.line2-3": "mes compétences et projets.",
|
||||
"home.line3": "J'ai démarré le dev en 2010. Aujourd'hui je compte plus de 50 projets à mon actif.",
|
||||
"home.line4": "Je suis très attaché à fournir à mes clients des projets maintenables afin qu'ils puissent évoluer à moindre coût (économique et écologique).",
|
||||
"home.line5-1": "Les technologies qui m'intéressent actuellement sont : le",
|
||||
"home.line5-2": "et l'",
|
||||
"home.line5-3": "(Arduino, Raspberry).",
|
||||
|
||||
"timeline.title": "Chronologie des projets avec",
|
||||
"timeline.back": "Choisir compétence",
|
||||
|
@ -95,6 +96,7 @@
|
|||
"project.doc": "Documentation:",
|
||||
"project.end": "Projet terminé en",
|
||||
"project.still": "Projet toujours actif",
|
||||
"project.username": "Adrien Marquès",
|
||||
|
||||
"end": ""
|
||||
}
|
Loading…
Reference in New Issue