Merge branch 'master' into dev

This commit is contained in:
Christophe HENRY 2022-08-02 12:23:44 +02:00
commit c49e214591
4 changed files with 12 additions and 4 deletions

View File

@ -21,10 +21,10 @@ All notable changes to this project will be documented in this file.
* Be able to change the page style on the top bar.
* Be able to change the font size.
## [1.4.1] - 2022-08-01
## [1.4.1] - 2022-08-02
* Adds link to /htmgem on the icon of the menu
* Fixes bug about CSS not applied correctly
* Fixes a bug about null by ref variable
* Adds link to /htmgem on the icon of the menu
## [1.4.0] - 2021-04-11
* Adds the breadcrumbs at the top and the bottom of the page.

View File

@ -25,6 +25,14 @@ blockquote {
color: #000;
}
.menu a.logo {
color: #000;
}
.menu a.logo:hover {
color: blue;
}
.menu hr {
color: white;
}

View File

@ -1,6 +1,6 @@
```
__ __ __ ______
|\ \ |\ \ |\ \ /\ \ v1.5.0
|\ \ |\ \ |\ \ /\ \ v1.4.1
| ▓▓ | ▓▓_| ▓▓_ ______ ____ | ▓▓▓▓▓▓\
| ▓▓__| ▓▓ ▓▓ \ |\ \ \| ▓▓ __\▓▓/\ \| \ \
| ▓▓ ▓▓\▓▓▓▓▓▓ | ▓▓▓▓▓▓\▓▓▓▓\ ▓▓| \ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\▓▓▓▓\

View File

@ -54,7 +54,7 @@ function getMenu(string $scheme, string $domain, string $path, string $prefix=nu
}
$linkList [] = $lastLink."\n"; // The last part holds no link
$output = "<div class='menu-line'>\n";
$output .= "<strong>$txt_icon</strong>$scheme\n";
$output .= "<strong><a class='logo' href='/htmgem'>".TXT_ICON."</a></strong>$scheme\n";
$output .= implode(" / ", $linkList);
$output .= "</div>\n";
return $output;