theme-selector.html 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. {{/* variables for enabling/disabling various features */}}
  2. {{ $darkEnabled := true }}
  3. {{ $lightEnabled := true }}
  4. {{ if site.Params.features.theme.enable }}
  5. {{ $darkEnabled = site.Params.features.theme.services.dark | default true }}
  6. {{ $lightEnabled = site.Params.features.theme.services.light | default true }}
  7. {{ end }}
  8. <li class="nav-item dropdown">
  9. <a class="nav-link dropdown-toggle" href="#" id="themeSelector" role="button"
  10. data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  11. <img id="navbar-theme-icon-svg" class="theme-icon" src="{{ "icons/moon-svgrepo-com.svg" | relURL }}" width=20 alt="Dark Theme">
  12. </a>
  13. <div id="themeMenu" class="dropdown-menu dropdown-menu-icons-only" aria-labelledby="themeSelector">
  14. {{ if $lightEnabled }}
  15. <a class="dropdown-item nav-link" href="#" data-scheme="light">
  16. <img class="theme-icon" src="{{ "icons/sun-svgrepo-com.svg" | relURL }}" width=20 alt="Light Theme">
  17. </a>
  18. {{ end }}
  19. {{ if $darkEnabled }}
  20. <a class="dropdown-item nav-link" href="#" data-scheme="dark">
  21. <img class="theme-icon" src="{{ "icons/moon-svgrepo-com.svg" | relURL }}" width=20 alt="Dark Theme">
  22. </a>
  23. {{ end }}
  24. {{ if and $lightEnabled $darkEnabled }}
  25. <a class="dropdown-item nav-link" href="#" data-scheme="system">
  26. <img class="theme-icon" src="{{ "icons/computer-svgrepo-com.svg" | relURL }}" width=20 alt="System Theme">
  27. </a>
  28. {{ end }}
  29. </div>
  30. </li>