123456789101112131415161718192021222324 |
- <div class="sidebar-content">
- <p><img src="/img/puppy.png" alt="Logo"></p>
- <a href="{{ .Site.BaseURL }}"><h1>{{ .Site.Title }}</h1></a>
- <p>{{ .Site.Params.description }}</p>
- {{ if .Site.Params.sidebarFreeText }}
- <div class="sidebar-freetext">
- <p>{{ .Site.Params.sidebarFreeText }}</p>
- </div>
- {{ end }}
- <ul class="sidebar-menus">
- {{ range .Site.Menus.main }}
- <li>» <a href="{{.URL}}">{{ .Name }}</a> {{ .Post }}</li>
- {{end}}
- </ul>
- <p class="copyright">{{ with .Site.Params.copyright }}{{.}}{{ else }}© {{now.Format "2006"}}. All rights reserved. {{end}}</p>
- <p class="attr">Powered by <a href="http://gohugo.io">Hugo</a> & <a href="https://github.com/ExchangeRate-API/strange-case">Strange Case</a> (inspired by <a href="https://github.com/poole/hyde">Hyde</a>).</p>
- </div>
|