Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

123456789101112131415161718192021
  1. <aside class="sidebar">
  2. <div class="container sidebar-sticky">
  3. <div class="sidebar-about">
  4. <a href="{{ .Site.BaseURL }}"><h1>{{ .Site.Title }}</h1></a>
  5. <p class="lead">
  6. {{ with .Site.Params.description }} {{.}} {{ else }}An elegant open source and mobile first theme for <a href="http://hugo.spf13.com">hugo</a> made by <a href="http://twitter.com/mdo">@mdo</a>. Originally made for Jekyll.{{end}}
  7. </p>
  8. </div>
  9. <nav>
  10. <ul class="sidebar-nav">
  11. <li><a href="{{ .Site.BaseURL }}">Home</a> </li>
  12. {{ range .Site.Menus.main -}}
  13. <li><a href="{{.URL}}"> {{ .Name }} </a></li>
  14. {{- end }}
  15. </ul>
  16. </nav>
  17. <p>{{ with .Site.Params.copyright }}{{.}}{{ else }}&copy; {{ now.Format "2006"}}. All rights reserved. {{end}}</p>
  18. </div>
  19. </aside>