diff --git a/CHANGELOG.gmi b/CHANGELOG.gmi index 39f28ba..118a6b6 100644 --- a/CHANGELOG.gmi +++ b/CHANGELOG.gmi @@ -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. diff --git a/css/default/htmgem.css b/css/default/htmgem.css index 8949208..1e1b443 100644 --- a/css/default/htmgem.css +++ b/css/default/htmgem.css @@ -25,6 +25,14 @@ blockquote { color: #000; } +.menu a.logo { + color: #000; +} + +.menu a.logo:hover { + color: blue; +} + .menu hr { color: white; } diff --git a/index.gmi b/index.gmi index 13b6ac5..2dd860d 100644 --- a/index.gmi +++ b/index.gmi @@ -1,6 +1,6 @@ ``` __ __ __ ______ -|\ \ |\ \ |\ \ /\ \ v1.5.0 +|\ \ |\ \ |\ \ /\ \ v1.4.1 | ▓▓ | ▓▓_| ▓▓_ ______ ____ | ▓▓▓▓▓▓\ | ▓▓__| ▓▓ ▓▓ \ |\ \ \| ▓▓ __\▓▓/\ \| \ \ | ▓▓ ▓▓\▓▓▓▓▓▓ | ▓▓▓▓▓▓\▓▓▓▓\ ▓▓| \ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\▓▓▓▓\ diff --git a/lib-html.inc.php b/lib-html.inc.php index 6d20aad..2674337 100644 --- a/lib-html.inc.php +++ b/lib-html.inc.php @@ -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 = "\n"; return $output;