mirror of https://github.com/luizdepra/hugo-coder.git

Piotr Orzechowski
02.33.2021 427f124aedd72b1f4028e1fe3ed58f77f8af17db
Add custom menu item param to set url function (#601)

3 files modified
6 ■■■■ changed files
layouts/partials/header.html 2 ●●● patch | view | raw | blame | history
netlify.toml 2 ●●● patch | view | raw | blame | history
theme.toml 2 ●●● patch | view | raw | blame | history
layouts/partials/header.html
@@ -12,7 +12,7 @@
        {{ with .Site.Menus.main}}
          {{ range sort . }}
            <li class="navigation-item">
              <a class="navigation-link" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
              <a class="navigation-link" href="{{ index (apply (slice .URL) (.Params.urlFunc | default "relLangURL") ".") 0 }}">{{ .Name }}</a>
            </li>
          {{ end }}
        {{ end }}
netlify.toml
@@ -3,7 +3,7 @@
command = "cd exampleSite && hugo --themesDir=../.. --baseURL $URL"
[build.environment]
HUGO_VERSION = "0.77.0"
HUGO_VERSION = "0.79.1"
HUGO_THEME = "repo"
[context.deploy-preview]
theme.toml
@@ -20,7 +20,7 @@
  "single-column",
  "syntax-highlighting"
]
min_version = "0.77.0"
min_version = "0.79.0"
[author]
name = "Luiz F. A. de PrĂ¡"