switcher.jet.html 244 B

12345678
  1. {{block Switcher(baseURL, paths, names, currentPath)}}
  2. {{ range i, k := paths }}
  3. <a href="{{ baseURL }}{{k}}" class="switch-button" selected="{{ currentPath == k ? 1 : 0}}">
  4. {{names[i]}}
  5. </a>
  6. {{ end }}
  7. {{ end }}