Compare commits
No commits in common. "58d2386c61e4ea4b576235c5bbb45c43ddd8bcbb" and "8ab9ee04ff2fc071a82e4c2cea38891f142e7763" have entirely different histories.
58d2386c61
...
8ab9ee04ff
|
|
@ -3,22 +3,9 @@
|
||||||
"mail": "thomas@amstutz.it",
|
"mail": "thomas@amstutz.it",
|
||||||
"phone": "",
|
"phone": "",
|
||||||
"about": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Distinctio doloribus, iure eum nostrum error tempora facilis ea.",
|
"about": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Distinctio doloribus, iure eum nostrum error tempora facilis ea.",
|
||||||
"skills": [
|
|
||||||
"HTML",
|
|
||||||
"CSS",
|
|
||||||
"Bootstrap",
|
|
||||||
"Javascript",
|
|
||||||
"jQuery",
|
|
||||||
"Figma"
|
|
||||||
],
|
|
||||||
"lang": [
|
|
||||||
"Français (langue maternelle)",
|
|
||||||
"Anglais",
|
|
||||||
"Allemand (Connaissance scolaires)"
|
|
||||||
],
|
|
||||||
"socials": [
|
"socials": [
|
||||||
{
|
{
|
||||||
"title": "Mon Github",
|
"title": "My personal Github",
|
||||||
"icon": "icon-github",
|
"icon": "icon-github",
|
||||||
"link": "https://github.com/TheThomaas"
|
"link": "https://github.com/TheThomaas"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
{% if title %}
|
|
||||||
<h3>{{ title }}</h3>
|
|
||||||
{% endif %}
|
|
||||||
{% if content %}
|
|
||||||
<ul style="list-style-type: initial">
|
|
||||||
{% for element in content %}
|
|
||||||
<li>{{ element }}</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
{% endif %}
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<li><a href="{{ social.link }}" class="{{ social.icon }} {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="{{ social.title }}" target="_blank">{% if showLabel == true %}{{ social.title }}{% endif %}</a></li>
|
<li><a href="{{ social.link }}" class="{{ social.icon }} {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="{{ social.title }}" target="_blank">{% if showLabel == true %}{{ social.title }}{% endif %}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if mail %}
|
{% if mail %}
|
||||||
<li><a href="mailto:{{ mail }}" class="icon-mail {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="Contactez moi par mail" target="_blank">{% if showLabel == true %}Contactez moi par mail{% endif %}</a></li>
|
<li><a href="mailto:{{ mail }}" class="icon-mail {% if showLabel == true %}{{ position | default: "icon--left" }}{% endif %}" title="Send me an e-mail" target="_blank">{% if showLabel == true %}Send me an e-mail{% endif %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<footer class="wrapper-full">
|
<footer class="wrapper-full">
|
||||||
<div>
|
<div>
|
||||||
<ul class="list-inline">
|
<ul class="list-inline">
|
||||||
<li>Réalisé avec <a href='https://11ty.dev/' target='_blank' rel='nofollow'>Eleventy</a></li>
|
<li>Built with <a href='https://11ty.dev/' target='_blank' rel='nofollow'>Eleventy</a></li>
|
||||||
{% if site.repository and site.repository != "" %}
|
{% if site.repository and site.repository != "" %}
|
||||||
<li>Source sur <a href="{{site.repository}}" target="_blank" rel="nofollow">{{site.repoSrc}}</a></li>
|
<li>Source on <a href="{{site.repository}}" target="_blank" rel="nofollow">{{site.repoSrc}}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,29 @@
|
||||||
---
|
---
|
||||||
title: Compétences
|
title: Compétences
|
||||||
displayedTitle: Mes compétences
|
|
||||||
order: 1
|
order: 1
|
||||||
|
showTitle: false
|
||||||
classes: 'competences-section langues-section'
|
classes: 'competences-section langues-section'
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="flex justify-center">
|
<div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
{% render "partials/components/list", title: "Compétences techniques", content: author.skills %}
|
<h2>{{title}}</h2>
|
||||||
</div>
|
<ul style="list-style-type: initial">
|
||||||
|
<li>HTML</li>
|
||||||
<div class="col">
|
<li>CSS</li>
|
||||||
{% render "partials/components/list", title: "Langues", content: author.lang %}
|
<li>Bootstrap</li>
|
||||||
|
<li>Javascript</li>
|
||||||
|
<li>jQuery</li>
|
||||||
|
<li>Eleventy</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col">
|
||||||
|
<h2>Langues</h2>
|
||||||
|
<ul style="list-style-type: initial">
|
||||||
|
<li>Français (langue maternelle)</li>
|
||||||
|
<li>Anglais</li>
|
||||||
|
<li>Allemand (Connaissance scolaires)</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
title: Téléchargement
|
title: Download
|
||||||
showTitle: false
|
showTitle: false
|
||||||
order: 4
|
order: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="flex justify-center items-center download">
|
<div class="flex-container justify-center download">
|
||||||
<p>Vous souhaitez imprimer ce document ?</p>
|
<p>You want to print this document ?</p>
|
||||||
<i>--></i>
|
<i>--></i>
|
||||||
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Télécharger en PDF</button>
|
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Download as PDF</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Expériences
|
title: Experiences
|
||||||
displayedTitle: Mes expériences
|
|
||||||
order: 3
|
order: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title: A propos
|
title: About me
|
||||||
order: 0
|
order: 0
|
||||||
template: 'hero'
|
template: 'hero'
|
||||||
eleventyComputed:
|
eleventyComputed:
|
||||||
description: "{{ author.about }}"
|
description: "{{ author.about }}"
|
||||||
displayedTitle: "Moi c'est {{ author.name }}<br>Et je suis développeur web"
|
displayedTitle: "Hello!<br>Moi c'est {{ author.name }}"
|
||||||
---
|
---
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Projets
|
title: Projects
|
||||||
displayedTitle: Mes projets
|
|
||||||
order: 2
|
order: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,24 +28,21 @@
|
||||||
background-color: var(--background-color, none);
|
background-color: var(--background-color, none);
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex {
|
.flex-container {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
}
|
|
||||||
|
|
||||||
.flex-col {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.justify-around {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
|
|
||||||
.justify-center {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.items-center {
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
&.flex-col {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.justify-around {
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.justify-center {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sr-only {
|
.sr-only {
|
||||||
|
|
|
||||||
|
|
@ -301,6 +301,14 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.competences-section {
|
.competences-section {
|
||||||
|
margin-left: 4vw;
|
||||||
|
|
||||||
|
> div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
.col {
|
.col {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue