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

sidebar.html 797B

12345678910111213141516171819
  1. <header class="masthead">
  2. <div class="masthead-inner">
  3. <h1>{{ .Site.Title }}</h1>
  4. <p class="lead">
  5. {{ 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}}
  6. </p>
  7. <div class="colophon">
  8. <ul class="colophon-links">
  9. <li><a href="/">Home</a> </li>
  10. {{ range .Site.Menus.main }}
  11. <li><a href="{{.Url}}"> {{ .Name }} </a></li>
  12. {{end}}
  13. </ul>
  14. <p>{{ with .Site.Params.Copyright }}{{.}}{{ else }}&copy; {{.Now.Format "2006"}}. All rights reserved. {{end}}</p>
  15. </div>
  16. </div>
  17. </header>