Compare commits

..

2 commits

Author SHA1 Message Date
TheThomaas a9908e3807 Remove unnecessary commented code 2024-02-06 22:12:06 +01:00
TheThomaas 183cb03399 Add links to experiences 2024-02-06 22:11:45 +01:00
4 changed files with 6 additions and 2 deletions

View file

@ -18,7 +18,6 @@ const observer = new IntersectionObserver(entries => {
}); });
},options); },options);
/* document.querySelectorAll('[id^="section"]').forEach(function(section, i) { */
document.querySelectorAll('section').forEach(function(section, i) { document.querySelectorAll('section').forEach(function(section, i) {
observer.observe(section); observer.observe(section);
}); });

View file

@ -2,7 +2,10 @@
{%- for experience in experiences -%} {%- for experience in experiences -%}
<li> <li>
<h3><time datetime="{{ experience.data.startDate }}">{{ experience.data.startDate }}</time><span>-</span><time datetime="{{ experience.data.endDate }}">{{ experience.data.endDate }}</time></h3> <h3><time datetime="{{ experience.data.startDate }}">{{ experience.data.startDate }}</time><span>-</span><time datetime="{{ experience.data.endDate }}">{{ experience.data.endDate }}</time></h3>
<p><strong>{{ experience.data.title }}</strong>, {{ experience.data.location }}</p> <p>
<strong>{% if experience.data.link %}<a href="{{experience.data.link}}">{% endif %}{{ experience.data.title }}{% if experience.data.link %}</a>{% endif %}</strong>,
{{ experience.data.location }}
</p>
<p>{{ experience.data.description }}</p> <p>{{ experience.data.description }}</p>
</li> </li>
{%- endfor -%} {%- endfor -%}

View file

@ -2,6 +2,7 @@
title: Artionet - Web Agency title: Artionet - Web Agency
description: Stage de 4ème année de CFC, développement web description: Stage de 4ème année de CFC, développement web
location: Delémont location: Delémont
link: https://www.artionet.ch
startDate: 2021 startDate: 2021
endDate: 2022 endDate: 2022
--- ---

View file

@ -2,6 +2,7 @@
title: Artionet - Web Agency title: Artionet - Web Agency
description: Développeur Front-End et Support Client description: Développeur Front-End et Support Client
location: Delémont location: Delémont
link: https://www.artionet.ch
startDate: 2022 startDate: 2022
endDate: 2024 endDate: 2024
--- ---