feat: generate the footer in pages
This commit is contained in:
parent
b4458acc13
commit
fb108b8cf7
8 changed files with 57 additions and 97 deletions
16
autres.html
16
autres.html
|
@ -27,19 +27,3 @@
|
|||
<!--<li><a></a></li>-->
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/autres.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -49,19 +49,3 @@
|
|||
-->
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/copaings.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
23
footer.html
Normal file
23
footer.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<div id="left-buttons">
|
||||
<a href="https://git.gyiwr.tf/gyiwr/tree/LICENSE">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
</a>
|
||||
<a href="http://www.mabsland.com/Adoption.html">
|
||||
<img src="img/Censor_Gc.gif"/>
|
||||
</a>
|
||||
</div>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/%file%">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
34
generate.sh
Executable file
34
generate.sh
Executable file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Génère les fichiers HTML de mon site
|
||||
#
|
||||
# Copyright (C) 2022 rick G. <rick@gnous.eu>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under
|
||||
# the terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation, either version 3 of the License, or (at your option) any later
|
||||
# version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along with
|
||||
# this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# liste des fichiers html à générer
|
||||
files="autres.html copaings.html index.html ou.html projets.html rss.html"
|
||||
|
||||
target="www"
|
||||
header="header.html"
|
||||
footer="footer.html"
|
||||
|
||||
for i in ${files}
|
||||
do
|
||||
echo "Generate $i..."
|
||||
file="$target/$i"
|
||||
#cat $header > $file
|
||||
cat $i > $file
|
||||
cat $footer >> $file
|
||||
sed -i s/%file%/$i/ $file
|
||||
done
|
17
index.html
17
index.html
|
@ -29,20 +29,3 @@
|
|||
<p></p>
|
||||
<p></p>
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/index.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
16
ou.html
16
ou.html
|
@ -73,19 +73,3 @@
|
|||
<li><a href="https://twitter.com/GnousRick">@GnousRick</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/ou.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
16
projets.html
16
projets.html
|
@ -141,19 +141,3 @@
|
|||
<h3>source-integration</h3>
|
||||
Le commit suivant est aussi de mon ressort mais dregad semble avoir remodifié en plus la REGEX. Je préfère mettre du coup uniquement les commits que j'ai écrit.
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/projets.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
16
rss.html
16
rss.html
|
@ -33,19 +33,3 @@
|
|||
<li>liens en vrac: <code>https://rss.gnous.eu/i/?a=rss&get=c_8&rid=61c7ae7cda839&user=rick&token=share&hours=1000</code></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div id="footer-main">
|
||||
<img src="img/gplv3-or-later.png"/>
|
||||
<div id="footer-text">
|
||||
<p>Site sans cookie, ni JS, ni tracker.</p>
|
||||
<p><a href="https://git.gyiwr.tf/gyiwr/tree/rss.html">Code source de la page</a></p>
|
||||
<p id="footer-contact">2021 (c) rick <span id="footer-link-email"><rick [at] gnous [dot] eu></span></p>
|
||||
</div>
|
||||
<img id="fsf" src="img/fsf.png"/>
|
||||
</div>
|
||||
<div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue