Added contents

This commit is contained in:
Xavier Beaudouin
2023-03-21 17:53:27 +01:00
parent 2daa4e66bb
commit d028afd646
3 changed files with 18 additions and 10 deletions

View File

@ -123,7 +123,7 @@ function domenu() {
// Top menu // Top menu
$out .= "<div class=\"divmenuhaut\">\n"; $out .= "<div class=\"divmenuhaut\">\n";
//$out .= "<p>&nbsp;</p><p>&nbsp;</p>\n"; //$out .= "<p>&nbsp;</p><p>&nbsp;</p>\n";
$out .= "<p>&nbsp;</p>\n"; //$out .= "<p>&nbsp;</p>\n";
$out .= "<ul class=\"menu\">\n"; $out .= "<ul class=\"menu\">\n";
foreach ($topmenu as $line => $val) { foreach ($topmenu as $line => $val) {
$out .= "<li><a class=\""; $out .= "<li><a class=\"";
@ -142,9 +142,10 @@ function domenu() {
} }
$out .= $val."</a></li>"; $out .= $val."</a></li>";
} }
$out .= "<li><a class=\"menuoff\" href=\"mailto:info@rislsi.eu\">Contact</a></li>";
$out .= "</ul></div>\n"; $out .= "</ul></div>\n";
/*
// Bottom menu // Bottom menu
/*
$out .= "<div class=\"divmenubas\">\n"; $out .= "<div class=\"divmenubas\">\n";
$out .= "<ul class=\"menu\">\n"; $out .= "<ul class=\"menu\">\n";
foreach ($bottommenu as $line => $val) { foreach ($bottommenu as $line => $val) {
@ -165,7 +166,7 @@ function domenu() {
$out .= $val."</a></li>"; $out .= $val."</a></li>";
} }
$out .= "</ul></div>\n"; $out .= "</ul></div>\n";
*/ */
print $out; print $out;
@ -177,6 +178,7 @@ function page($titre) {
printheader($titre); printheader($titre);
domenu(); domenu();
print "<div class=\"textebox\">\n"; print "<div class=\"textebox\">\n";
//print "<p><img src=\"/_blank.gif\" alt=\"Nothing\"></p>\n";
} }
function page2($titre) { function page2($titre) {
printheader2($titre); printheader2($titre);

View File

@ -7,6 +7,7 @@ intro=RIS LSI
bsd=BSD Unix bsd=BSD Unix
linux=GNU/Linux linux=GNU/Linux
network=Networking network=Networking
c=Development
energy=Energy Storage energy=Energy Storage
[bottommenu] [bottommenu]

View File

@ -2,14 +2,19 @@
require_once("include/function.inc.php"); require_once("include/function.inc.php");
page("Homepage"); page("Homepage");
?> ?>
<p class="textetitre">RIS LSI Consulting SASU</p> <p class="texte"><center><img src="/logo/png/logo-no-backgroud.png" height="100px" width="100px" srcset="/logo/svg/logo-no-background.svg" alt="RIS LSI Consulting"></center></p>
<p class="texte"> <p class="textetitre">RIS LSI</p>
</p>
<p class="textetitre">Who I am ?</p>
<p class="texte">
</p>
<p class="textetitre">Social Media</p>
<p class="texte"> <p class="texte">
RIS LSI means : Réseaux Informatiques - Systèmes Libres - Stockage Informatique.
<br/>
More than 28 years of experiences in the following domains (and more others domains, just ask).
<ul>
<li><b>BSDs</b>: FreeBSD, OpenBSD, NetBSD</li>
<li><b>GNU/Linux</b>: Debian, Ubuntu, Redhat, CentOS, RockyLinux</li>
<li><b>Networking</b>: Cisco, Juniper, Mikrotik, Ubiquiti, Wifi</li>
<li><b>Development</b>: C, Asm, Pike, Python</li>
<li><b>Energy Storage</b>: Victron Energy</li>
</ul>
</p> </p>
<?php <?php
finpage(); finpage();