2018-07-16 03:22:00 +00:00
|
|
|
<!-- Sidebar -->
|
2018-07-23 02:15:56 +00:00
|
|
|
<div class="sidebar">
|
2018-07-20 20:32:00 +00:00
|
|
|
<div class="container {{ with .Site.Params.sidebarSticky -}}sidebar-sticky{{- end }}">
|
|
|
|
<div class="sidebar-about">
|
2018-07-26 07:51:50 +00:00
|
|
|
<span class="site__title">
|
2018-07-20 20:32:00 +00:00
|
|
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
2018-07-26 07:51:50 +00:00
|
|
|
</span>
|
2018-07-16 03:22:00 +00:00
|
|
|
{{ with .Site.Params.authorimage }}
|
2018-07-21 07:08:41 +00:00
|
|
|
{{ $strippedSlash := ($.Site.Params.authorimage | replaceRE "^(/)+(.*)" "$2") }}
|
|
|
|
{{ $authorImage := (printf "%s%s" $.Site.BaseURL $strippedSlash) }}
|
2018-07-26 07:51:50 +00:00
|
|
|
<div class="author-image">
|
2018-07-21 07:08:41 +00:00
|
|
|
<img src="{{$authorImage}}" alt="Author Image" class="img--circle img--headshot element--center">
|
2018-07-25 02:26:05 +00:00
|
|
|
</div>
|
2018-07-20 20:32:00 +00:00
|
|
|
{{ end }}
|
|
|
|
<p class="site__description">
|
2018-06-04 18:31:08 +00:00
|
|
|
{{ with .Site.Params.description }} {{.}} {{ else }} Your site's description {{end}}
|
|
|
|
</p>
|
|
|
|
</div>
|
2018-07-10 01:41:30 +00:00
|
|
|
{{ partial "sidebar/menu.html" . }}
|
2018-06-04 18:31:08 +00:00
|
|
|
<p>
|
2018-07-10 01:41:30 +00:00
|
|
|
{{ partial "sidebar/social.html" . }}
|
2018-06-04 18:31:08 +00:00
|
|
|
</p>
|
2018-07-21 07:08:41 +00:00
|
|
|
<p class="copyright">
|
|
|
|
{{ with .Site.Params.copyright }}{{.|safeHTML}}{{ else }}© {{ now.Format "2006"}} {{.Site.Params.author}}.
|
2018-07-16 03:22:00 +00:00
|
|
|
<a href="https://creativecommons.org/licenses/by-sa/4.0">Some Rights Reserved</a>.
|
|
|
|
<br/>Built with
|
2018-07-21 07:08:41 +00:00
|
|
|
<a href="https://gohugo.io">Hugo</a> ❤️ <a href="https://github.com/htr3n/hyde-hyde">hyde-hyde</a>.
|
|
|
|
{{end}}
|
2018-06-04 18:31:08 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
</div>
|
2014-05-14 22:57:17 +00:00
|
|
|
</div>
|