mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 11:39:29 -07:00
* feat: refactor condition for checking `site.Params.bundled` - Add default condition for checking if `site.Params.bundled` is true or false * refactor: update info page content * chore: update site description * refactor: refactor variable assignments and return statement in menu template - Change the variable assignment from `.DirName` to `.Identifier` in the file `layouts/_default/single.json` - Change the variable assignments in the file `layouts/partials/function/currentMenuItem.html`: - From `$dirName := ""` to `$identifier := ""` - From `$id := -1` to `$title := ""` and `$weight := -1` - From `$dirName = .Identifier` to `$identifier = .Identifier`, `$title = .Title`, and `$weight = .Weight` - Change the return statement in the file `layouts/partials/function/currentMenuItem.html` from `(dict "DirName" $dirName "ID" $id)` to `(dict "Identifier" $identifier "Title" $title "Weight" $weight)` * feat: update nav links structure for current link styling - Remove javascript code related to setting current link style and title - Update nav links to use updated HTML structure for current link styling * feat: update page titles and meta tags in layout files - Update the `baseof.html` layout to include the current page title in the `<title>` tag - Add OpenGraph meta tags for the page title and description in `meta.html` layout
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<nav>
|
|
<div class="navArtist">
|
|
<a href="/">{{ site.Title }}</a>
|
|
</div>
|
|
<div class="links">
|
|
{{- $index := 0 -}}
|
|
{{- $currentIndex := -1 -}}
|
|
{{- with partial "function/currentMenuItem.html" . -}}
|
|
{{- $currentIndex = sub .Weight 1 -}}
|
|
{{- end -}}
|
|
{{- $menus := .Site.Menus.main -}}
|
|
{{- $len := len $menus }}
|
|
{{- range $menus -}}
|
|
{{- $url := .URL | relURL -}}
|
|
{{- if eq (add $index 1) $len -}}
|
|
<a
|
|
href="{{- .URL | relURL -}}"
|
|
class="link{{- if eq $index $currentIndex -}}
|
|
{{- printf " current" -}}
|
|
{{- end -}}"
|
|
>{{- .Title -}}</a
|
|
>
|
|
{{- else -}}
|
|
<a
|
|
href="{{- .URL | relURL -}}"
|
|
class="link{{- if eq $index $currentIndex -}}
|
|
{{- printf " current" -}}
|
|
{{- end -}}"
|
|
>{{- .Title -}}</a
|
|
>, 
|
|
{{- end -}}
|
|
{{- $index = add $index 1 -}}
|
|
{{- end -}}
|
|
</div>
|
|
<div class="threshold">
|
|
<span>{{- i18n "threshold" | strings.FirstUpper -}}:</span>
|
|
<span>
|
|
<button class="dec">-</button>
|
|
<span class="num"></span><span class="num"></span><span class="num"></span
|
|
><span class="num"></span>
|
|
<button class="inc">+</button>
|
|
</span>
|
|
</div>
|
|
<div class="index">
|
|
<span class="num"></span><span class="num"></span><span class="num"></span
|
|
><span class="num"></span>
|
|
<span>/</span>
|
|
<span class="num"></span><span class="num"></span><span class="num"></span
|
|
><span class="num"></span>
|
|
</div>
|
|
</nav>
|