Skip to content

Commit 937cf80

Browse files
committed
feat(action): Add one more goto action button
1 parent 85e989a commit 937cf80

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

_data/en/i18n.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ about-author: "Hello,<br>I am <a class='enhance' href='/en/jean-jerome-levy/'>Je
22
author-name: "Jean-Jerome Levy"
33
author-desc: "Seasoned professional in the field of information technology, I bring over 20 years of experience from working within major corporate IT departments. My diverse expertise has played a pivotal role in a myriad of projects, marked by the implementation of innovative DevOps practices."
44
author-job: "DevOps Consultant"
5+
author-goto-action: "Available for innovative DevOps projects!"
56
written-by: "Written by"
67
about-company: "I officiate in the company Scalastic."
78
company-desc: "A company specializing in DevOps and Cloud"

_data/fr/i18n.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ about-author: "Bonjour,<br> Je suis <a class='enhance' href='/jean-jerome-levy/'
22
author-name: "Jean-Jérôme Lévy"
33
author-desc: "Professionnel chevronné dans le domaine de l’informatique, cumulant plus de 20 années d’expérience au sein de DSI de grandes entreprises, mon expertise diversifiée m’a permis de jouer un rôle clé dans de nombreux projets, caractérisés par la mise en place de pratiques DevOps innovantes."
44
author-job: "Consultant DevOps"
5+
author-goto-action: "Disponible pour des projets DevOps innovants !"
56
written-by: "Ecrit par"
67
about-company: "J'officie au sein de la société Scalastic."
78
company-desc: "Une société spécialisée dans le DevOps et le Cloud"

_includes/author.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,13 @@ <h2 class="name">{{ site.data.i18n.author-name }}</h2>
1414
<div class="author-desc">
1515
<p>{{ site.data.i18n.author-desc }}</p>
1616
</div>
17+
<div class="available-banner">
18+
<a href="{{ '/jean-jerome-levy/' | prepend: site.baseurl }}">
19+
<strong>{{ site.data.i18n.author-goto-action }}</strong>
20+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="28" fill="white">
21+
<!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
22+
<path d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM297 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l214.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9L297 385z"/>
23+
</svg>
24+
</a>
25+
</div>
1726
</div>

_sass/parts/_post-page.scss

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,10 @@ a.card-source.microlink_vanilla {
609609
margin: 10px 0px;
610610
border-bottom: 1px solid var(--emphasis-color);
611611
display: flex;
612+
flex-wrap: wrap;
612613
justify-content: space-between;
614+
align-items: center;
615+
613616
p {
614617
margin: 0;
615618
}
@@ -671,6 +674,41 @@ a.card-source.microlink_vanilla {
671674
color: var(--discreet-color);
672675
opacity: 0.9;
673676
}
677+
678+
.available-banner {
679+
width: 100%;
680+
margin: 0;
681+
padding: 15px;
682+
683+
display: flex;
684+
justify-content: center;
685+
align-items: center;
686+
687+
a {
688+
display: flex;
689+
align-items: center;
690+
gap: 8px;
691+
padding: 8px 12px;
692+
background-color: var(--emphasis-color);
693+
color: white;
694+
text-decoration: none;
695+
border-radius: 5px;
696+
font-weight: bold;
697+
position: relative;
698+
animation: pulse 2s infinite;
699+
}
700+
701+
@keyframes pulse {
702+
0%, 100% {
703+
transform: scale(1);
704+
background-color: var(--emphasis-color);
705+
}
706+
50% {
707+
transform: scale(1.05);
708+
background-color: #3bcf00;
709+
}
710+
}
711+
}
674712
}
675713

676714
.recomm,

0 commit comments

Comments
 (0)