-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix wrong css import * fix wrong css import * prevent main menu from lowercase-ify
- Loading branch information
Sebastian Warnke
authored
Sep 29, 2021
1 parent
b5813c9
commit 147297f
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{{ with .Site.Menus.main }} | ||
<section id="main-menu-pane" class="text-center main-menu"> | ||
{{ range sort . }} | ||
<h4><a class="menu-item" href="{{ .URL }}">{{ .Name | lower }}</a></h4> | ||
<h4><a class="menu-item" href="{{ .URL }}">{{ .Name }}</a></h4> | ||
{{ end }} | ||
</section> | ||
{{ end }} |