|
|
@@ -10,7 +10,7 @@
|
|
|
</h1>
|
|
|
|
|
|
<h2>
|
|
|
- {{ $t('twelve_years_experience') }}
|
|
|
+ {{ $t('x_years_experience', { years: XP_YEARS }) }}
|
|
|
</h2>
|
|
|
|
|
|
<div class="introduction">
|
|
|
@@ -62,58 +62,75 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="badges">
|
|
|
- <h2>Languages</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge
|
|
|
- title="Python"
|
|
|
- img="/images/logos/python.svg"
|
|
|
- subtitle="12 years"
|
|
|
- details="J'ai travaillé sur de très nombreux projets avec Python, depuis la version 2.7 jusqu'à la version 3.12: scripts variés, extensions QGis, projets web, librairies, utilitaires ou applications buraeautiques."
|
|
|
- />
|
|
|
- <Badge title="PHP" img="/images/logos/php.svg" subtitle="4 years" />
|
|
|
- <Badge title="Node.js" img="/images/logos/node-light.svg" subtitle="5 years" />
|
|
|
- <Badge title="C#" img="/images/logos/csharp.png" subtitle="2 years" />
|
|
|
- </div>
|
|
|
-
|
|
|
- <h2>Frameworks</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge title="Symfony" img="/images/logos/symfony.svg" subtitle="4 years" />
|
|
|
- <Badge title="Vue.js" img="/images/logos/vue.png" subtitle="3 years" />
|
|
|
- <Badge title="Nuxt.js" img="/images/logos/nuxt.svg" subtitle="3 years" />
|
|
|
- <Badge title="Django" img="/images/logos/django-light.svg" subtitle="2 years" />
|
|
|
- <Badge title=".Net" img="/images/logos/dotnet.svg" subtitle="2 years" />
|
|
|
- <Badge title="Jquery" img="/images/logos/jquery.png" subtitle="4 years"/>
|
|
|
- </div>
|
|
|
-
|
|
|
- <h2>DBs and search-engines</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge title="Mysql" img="/images/logos/mysql.png" subtitle="6 years" />
|
|
|
- <Badge title="MariaDb" img="/images/logos/mariadb.svg" subtitle="6 years" />
|
|
|
- <Badge title="Postgresql" img="/images/logos/postgresql.png" subtitle="4 years"/>
|
|
|
- <Badge title="SQL-Server" img="/images/logos/sql-server.svg" subtitle="6 years" />
|
|
|
- <Badge title="Sqlite" img="/images/logos/sqlite.png" subtitle="5 years" />
|
|
|
- <Badge title="Solr" img="/images/logos/solr.png" subtitle="1 year" />
|
|
|
- </div>
|
|
|
-
|
|
|
- <h2>Devops</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge title="Docker" img="/images/logos/docker.svg" subtitle="5 years" />
|
|
|
- <Badge title="Gitlab CI" img="/images/logos/gitlab.svg" subtitle="8 years" />
|
|
|
- <Badge title="Github Actions" img="/images/logos/github-light.svg" subtitle="1 year" />
|
|
|
- <Badge title="Jenkins" img="/images/logos/jenkins.png" subtitle="4 years" />
|
|
|
- </div>
|
|
|
|
|
|
- <h2>CMS</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge title="Typo3 (development)" img="/images/logos/typo3.png" subtitle="4 year" />
|
|
|
- <Badge title="Wordpress (administration)" img="/images/logos/wordpress.png" subtitle="6 years"/>
|
|
|
- </div>
|
|
|
-
|
|
|
- <h2>Other</h2>
|
|
|
- <div class="badges-section">
|
|
|
- <Badge title="Mercure (SSE)" img="/images/logos/mercure.svg" subtitle="3 years" />
|
|
|
- <Badge title="Nextcloud" img="/images/logos/nextcloud.svg" subtitle="6 years" />
|
|
|
- </div>
|
|
|
+ <v-container>
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="4">
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>Languages</h2>
|
|
|
+
|
|
|
+ <Badge
|
|
|
+ title="Python"
|
|
|
+ img="/images/logos/python.svg"
|
|
|
+ :subtitle="$t('x_years', { years: 10 })"
|
|
|
+ details="J'ai travaillé sur de très nombreux projets avec Python, depuis la version 2.7 jusqu'à la version 3.12: scripts variés, extensions QGis, projets web, librairies, utilitaires ou applications buraeautiques."
|
|
|
+ />
|
|
|
+ <Badge title="PHP" img="/images/logos/php.svg" :subtitle="$t('x_years', { years: 4 })" />
|
|
|
+ <Badge title="Node.js" img="/images/logos/node-light.svg" :subtitle="$t('x_years', { years: 5 })" />
|
|
|
+ <Badge title="C#" img="/images/logos/csharp.png" :subtitle="$t('x_years', { years: 2 })" />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>Frameworks</h2>
|
|
|
+
|
|
|
+ <Badge title="Symfony" img="/images/logos/symfony.svg" :subtitle="$t('x_years', { years: 4 })" />
|
|
|
+ <Badge title="Vue.js" img="/images/logos/vue.png" :subtitle="$t('x_years', { years: 3 })" />
|
|
|
+ <Badge title="Nuxt.js" img="/images/logos/nuxt.svg" :subtitle="$t('x_years', { years: 3 })" />
|
|
|
+ <Badge title="Django" img="/images/logos/django-light.svg" :subtitle="$t('x_years', { years: 3 })" />
|
|
|
+ <Badge title=".Net" img="/images/logos/dotnet.svg" :subtitle="$t('x_years', { years: 2 })" />
|
|
|
+ <Badge title="Jquery" img="/images/logos/jquery.png" :subtitle="$t('x_years', { years: 4 })"/>
|
|
|
+ </div>
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="4">
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>DBs and search-engines</h2>
|
|
|
+
|
|
|
+ <Badge title="Mysql" img="/images/logos/mysql.png" :subtitle="$t('x_years', { years: 6 })" />
|
|
|
+ <Badge title="MariaDb" img="/images/logos/mariadb.svg" :subtitle="$t('x_years', { years: 6 })" />
|
|
|
+ <Badge title="Postgresql" img="/images/logos/postgresql.png" :subtitle="$t('x_years', { years: 4 })"/>
|
|
|
+ <Badge title="SQL-Server" img="/images/logos/sql-server.svg" :subtitle="$t('x_years', { years: 6 })" />
|
|
|
+ <Badge title="Sqlite" img="/images/logos/sqlite.png" :subtitle="$t('x_years', { years: 5 })" />
|
|
|
+ <Badge title="Solr" img="/images/logos/solr.png" :subtitle="$t('x_years', { years: 1 })" />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>Devops</h2>
|
|
|
+
|
|
|
+ <Badge title="Docker" img="/images/logos/docker.svg" :subtitle="$t('x_years', { years: 5 })" />
|
|
|
+ <Badge title="Gitlab CI" img="/images/logos/gitlab.svg" :subtitle="$t('x_years', { years: 8 })" />
|
|
|
+ <Badge title="Github Actions" img="/images/logos/github-light.svg" :subtitle="$t('x_years', { years: 1 })" />
|
|
|
+ <Badge title="Jenkins" img="/images/logos/jenkins.png" :subtitle="$t('x_years', { years: 4 })" />
|
|
|
+ </div>
|
|
|
+ </v-col>
|
|
|
+
|
|
|
+ <v-col cols="4">
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>CMS</h2>
|
|
|
+
|
|
|
+ <Badge title="Typo3" img="/images/logos/typo3.png" :subtitle="$t('x_years', { years: 4 })" />
|
|
|
+ <Badge title="Wordpress" img="/images/logos/wordpress.png" :subtitle="$t('x_years', { years: 6 })"/>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="badges-section">
|
|
|
+ <h2>Other</h2>
|
|
|
+
|
|
|
+ <Badge title="Mercure (SSE)" img="/images/logos/mercure.svg" :subtitle="$t('x_years', { years: 3 })" />
|
|
|
+ <Badge title="Nextcloud" img="/images/logos/nextcloud.svg" :subtitle="$t('x_years', { years: 6 })" />
|
|
|
+ </div>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </v-container>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -121,6 +138,11 @@
|
|
|
|
|
|
const i18n = useI18n()
|
|
|
|
|
|
+const START_YEAR = 2011
|
|
|
+const CURRENT_YEAR = new Date().getFullYear();
|
|
|
+
|
|
|
+const XP_YEARS = CURRENT_YEAR - START_YEAR
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
@@ -132,19 +154,15 @@ const i18n = useI18n()
|
|
|
text-align: center;
|
|
|
padding: 20px;
|
|
|
|
|
|
- @media (min-width: 1920px) {
|
|
|
- height: 640px;
|
|
|
- }
|
|
|
-
|
|
|
h2 {
|
|
|
- margin: 18px 0;
|
|
|
+ margin: 18px 0 36px 0;
|
|
|
border-bottom: none;
|
|
|
}
|
|
|
|
|
|
.introduction {
|
|
|
max-width: 800px;
|
|
|
text-align: justify;
|
|
|
- padding: 36px;
|
|
|
+ padding: 36px 64px;
|
|
|
border: solid 1px rgba(var(--v-theme-on-neutral), 0.4);
|
|
|
border-radius: 16px;
|
|
|
background: rgba(var(--v-theme-primary-alt), 0.1);
|
|
|
@@ -177,7 +195,7 @@ const i18n = useI18n()
|
|
|
|
|
|
.badges-section {
|
|
|
display: flex;
|
|
|
- flex-direction: row;
|
|
|
+ flex-direction: column;
|
|
|
flex-wrap: wrap;
|
|
|
justify-content: center;
|
|
|
|