mirror of
https://tildegit.org/sbgodin/HtmGem.git
synced 2023-08-25 13:53:12 +02:00
Merge branch 'master' into dev
This commit is contained in:
commit
c49e214591
@ -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 page style on the top bar.
|
||||||
* Be able to change the font size.
|
* 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 bug about CSS not applied correctly
|
||||||
* Fixes a bug about null by ref variable
|
* Fixes a bug about null by ref variable
|
||||||
* Adds link to /htmgem on the icon of the menu
|
|
||||||
|
|
||||||
## [1.4.0] - 2021-04-11
|
## [1.4.0] - 2021-04-11
|
||||||
* Adds the breadcrumbs at the top and the bottom of the page.
|
* Adds the breadcrumbs at the top and the bottom of the page.
|
||||||
|
@ -25,6 +25,14 @@ blockquote {
|
|||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu a.logo {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu a.logo:hover {
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
.menu hr {
|
.menu hr {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
```
|
```
|
||||||
__ __ __ ______
|
__ __ __ ______
|
||||||
|\ \ |\ \ |\ \ /\ \ v1.5.0
|
|\ \ |\ \ |\ \ /\ \ v1.4.1
|
||||||
| ▓▓ | ▓▓_| ▓▓_ ______ ____ | ▓▓▓▓▓▓\
|
| ▓▓ | ▓▓_| ▓▓_ ______ ____ | ▓▓▓▓▓▓\
|
||||||
| ▓▓__| ▓▓ ▓▓ \ |\ \ \| ▓▓ __\▓▓/\ \| \ \
|
| ▓▓__| ▓▓ ▓▓ \ |\ \ \| ▓▓ __\▓▓/\ \| \ \
|
||||||
| ▓▓ ▓▓\▓▓▓▓▓▓ | ▓▓▓▓▓▓\▓▓▓▓\ ▓▓| \ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\▓▓▓▓\
|
| ▓▓ ▓▓\▓▓▓▓▓▓ | ▓▓▓▓▓▓\▓▓▓▓\ ▓▓| \ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\▓▓▓▓\
|
||||||
|
@ -54,7 +54,7 @@ function getMenu(string $scheme, string $domain, string $path, string $prefix=nu
|
|||||||
}
|
}
|
||||||
$linkList [] = $lastLink."\n"; // The last part holds no link
|
$linkList [] = $lastLink."\n"; // The last part holds no link
|
||||||
$output = "<div class='menu-line'>\n";
|
$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 .= implode(" / ", $linkList);
|
||||||
$output .= "</div>\n";
|
$output .= "</div>\n";
|
||||||
return $output;
|
return $output;
|
||||||
|
Loading…
Reference in New Issue
Block a user