Compare commits

..

No commits in common. "554d9383bcf111b5b9d42fb7b315bffff79231c1" and "0902251a66e64547018c624b65b81629a67df19e" have entirely different histories.

9 changed files with 49 additions and 33 deletions

View file

@ -35,23 +35,20 @@ header h2 {
#lang {
margin-top: 20px;
display: grid;
grid-auto-flow: column;
grid-column-gap: 1em;
grid-template-rows: fit-content(100%);
}
#lang a {
font-weight: bold;
font-size: 150%;
#lang img {
border: 2px solid black;
filter: brightness(50%);
}
#lang #choose {
color: #4970E1;
filter: brightness(100%);
}
#lang a:hover {
color: #FA4DBA;
#lang img:hover {
filter: brightness(100%);
border-color: cyan;
}
#header-links {

View file

@ -31,7 +31,6 @@ defaultLang="fr"
header="header.html"
footer="footer.html"
org=0
testDocker=0
################################################################################
# Génère un message d'aide
@ -79,7 +78,14 @@ do
exit 0
;;
"-t") # lancer un docker de test
testDocker=1
docker build . --tag site && echo -e \
"\n\033[32mSite de test déployé sur l'adresse" \
"localhost:8080\033[0m" || exit 1
echo -e "\033[32mC-c pour quitter\033[0m\n"
docker run --rm -p 8080:80 site
docker rmi site
exit 0
;;
"-d") ;&
"-n")
@ -127,22 +133,6 @@ function generate_header {
echo -e " </div>\n" >> $tmpHeader
}
if [ $testDocker -eq 1 ]
then
docker build . --tag site && echo -e \
"\n\033[32mSite de test déployé sur l'adresse" \
"localhost:8080\033[0m" || exit 1
echo -e "\033[32mC-c pour quitter\033[0m\n"
docker run --rm -p 8080:80 site
docker rmi site
exit 0
fi
if [ -d $target ]
then
# TODO demander à l'utilisateur
@ -189,7 +179,7 @@ do
sed -i -e "/%links%/d" $file
sed -i -e "/%link%/,/%endlink%/d" $file
sed -i -e "s/>${l^^}<\/a>/ id=\"choose\">${l^^}<\/a>/" $file
sed -i -e "s/img alt=\"$l/img id=\"choose\" alt=\"$l/" $file
sed -i -e "s/%file%/$i/" $file
sed -i -e "s/%gitfile%/lang\/$l\/$i/" $file

View file

@ -17,8 +17,8 @@
<h2>%subtitle%</h2>
</div>
<div id="lang">
<a href="/fr/%file%">FR</a>
<a href="/en/%file%">EN</a>
<a href="/fr/%file%"><img alt="fr" src="/img/fr.svg" height=35 /></a>
<a href="/en/%file%"><img alt="en" src="/img/en.svg" height=35 /></a>
<!--<a href="/toki/%file%"><img alt="toki" src="/img/fr.svg" height=35 /></a>-->
</div>
</header>

9
img/en.svg Normal file
View file

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 30" width="1000" height="600">
<clipPath id="t">
<path d="M25,15h25v15zv15h-25zh-25v-15zv-15h25z"/>
</clipPath>
<path d="M0,0v30h50v-30z" fill="#012169"/>
<path d="M0,0 50,30M50,0 0,30" stroke="#fff" stroke-width="6"/>
<path d="M0,0 50,30M50,0 0,30" clip-path="url(#t)" stroke="#C8102E" stroke-width="4"/>
<path d="M-1 11h22v-12h8v12h22v8h-22v12h-8v-12h-22z" fill="#C8102E" stroke="#FFF" stroke-width="2"/>
</svg>

After

(image error) Size: 477 B

6
img/fr.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
<rect width="900" height="600" fill="#CE1126"/>
<rect width="600" height="600" fill="#FFFFFF"/>
<rect width="300" height="600" fill="#002654"/>
</svg>

After

(image error) Size: 262 B

View file

@ -10,6 +10,14 @@
<h2>Header</h2>
<p>The Glider comes from <a href="http://www.catb.org/hacker-emblem/">catb website</a>.</p>
<h3>Flags</h3>
<p>I use SVGs from Wikipedia.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/File:Flag_of_France.svg">France</a></li>
<li><a href="https://en.wikipedia.org/wiki/File:Flag_of_the_United_Kingdom_(1-2).svg">United-Kingdom</a></li>
</ul>
<h2>Web buttons in footer</h2>
<p>The links on the buttons are often websites where I found them.</p>

View file

@ -24,7 +24,6 @@ rel="stylesheet" href="/css/index.css"
<h2>News</h2>
<p>I'll add the interesting news of my website here. Read the commits to have more informations about the small changes of the site !</p>
<div id="news">
<p><code>04-04-2024:</code> use ISO norm instead of flags for languages.</p>
<p><code>25-10-2023:</code> translate everything \o/ (unless ??).</p>
<p><code>04-10-2023:</code> moving to a VPS at <a href="https://contabo.com">Contabo</a>.</p>
<p><code>29-09-2023:</code> nice favicon :).</p>

View file

@ -10,6 +10,14 @@
<h2>Header</h2>
<p>Le Glider vient du site de <a href="http://www.catb.org/hacker-emblem/">catb</a>.</p>
<h3>Drapeaux des langues</h3>
<p>Ils proviennent des fichiers SVG de Wikipedia.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/File:Flag_of_France.svg">France</a></li>
<li><a href="https://en.wikipedia.org/wiki/File:Flag_of_the_United_Kingdom_(1-2).svg">Royaume-Uni</a></li>
</ul>
<h2>Boutons web dans le footer</h2>
<p>Les liens des boutons sont souvent les sites sur lesquels j'ai pu trouver les boutons.</p>

View file

@ -24,7 +24,6 @@ rel="stylesheet" href="/css/index.css"
<h2>Nouveautés</h2>
<p>Je rajouterai les nouveautés intéressantes du site ici. Lisez les commits pour avoir plus de détails sur les petites modifications du site !</p>
<div id="news">
<p><code>04-04-2024:</code> utilisation de la norme ISO au lieu de drapeaux pour les langues.</p>
<p><code>04-10-2023:</code> migration vers un VPS chez <a href="https://contabo.com">Contabo</a>.</p>
<p><code>29-09-2023:</code> un joli favicon :).</p>
<p><code>30-05-2023:</code> une meilleure CSP pour éviter <a href="https://im-in.space/@kdy/110429056346185564">les injections de trackers</a>.</p>