24 lines
1015 B
HTML
24 lines
1015 B
HTML
<div class="sidebar{{ with .Site.Params.doNotLoadAnimations }} . {{ else }} animated fadeInDown {{ end }}">
|
|
<div class="logo-title">
|
|
<div class="title">
|
|
<img src="{{ .Site.Params.profilePicture | absURL }}" alt="profile picture">
|
|
<h3 title=""><a href="/">{{ .Site.Params.Title }}</a></h3>
|
|
<div class="description">
|
|
<p>{{ .Site.Params.description }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ul class="social-links">
|
|
{{ range $item := .Site.Params.socialIcons }}
|
|
<li>
|
|
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}">
|
|
<i class="{{ $item.icon }} fa-2x" aria-hidden="true"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
<div class="footer">
|
|
<div class="by_farbox">© {{ .Site.Params.author }} {{ if isset .Site.Params "copyright" }} {{ .Site.Params.copyright }} {{ else }} {{ now.Format "2006"}} {{end}}</div>
|
|
</div>
|
|
</div>
|