hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

nav-links-global-mobile.html (430B)

    1 {{ $currentPage := . }}
    2 {{ $menu := .Site.Menus.global }}
    3 <ul class="list hidden dib ph0 scrolling-touch tc">
    4   {{ range $menu }}
    5     <li  class="tl dib ma0 hover-bg-black w-100">
    6         <a href="{{.URL}}" class="ttu f6 link primary-color-light overflow hover-white db brand-font  ma0 w-100 pv3 ph4{{if $currentPage.IsMenuCurrent "main" . }} bg-primary-color{{end}}">
    7           {{ .Name }}
    8         </a>
    9     </li>
   10   {{end}}
   11 </ul>