Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nav-links.html « partials « layouts - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 798a37791a3a07b3a8cc24aa356eed90a9b0c08f (plain)
1
2
3
4
5
6
7
<ul class="w-full flex flex-col lg:flex-row justify-end items-end lg:items-center">
  {{ range .Site.Menus.main.ByWeight }}
    <li class="flex my-2 lg:my-2 mx-1 lg:mx-2">
      <a title="{{ .Name }}" class="lg:border lg:py-2 lg:px-3 rounded text-sm" href="{{ .URL }}">{{ .Name }}</a>
    </li>
  {{ end }}
</ul>