Files
static-site-pipeline/hugo/themes/anatole/layouts/partials/sidebar.html
2024-10-26 12:48:14 +01:00

36 lines
1.5 KiB
HTML

<div class="sidebar animated fadeInDown">
<div class="logo-title">
<div class="title">
<img src="{{ printf "%s.png" .Site.Params.profilePicture | absURL }}" srcset="{{ printf "%s-small.png" .Site.Params.profilePicture | absURL }} 337w, {{ printf "%s.png" .Site.Params.profilePicture | absURL }} 1020w" sizes="337px, 1020px" alt="profile picture" width="127" height="127" />
<h3 title=""><a href="/">{{ .Site.Params.Title }}</a></h3>
{{ if .Site.Params.description }}
<div class="description">
<p>{{ .Site.Params.description }}</p>
</div>
{{ end }}
</div>
</div>
<table class="social-links">
<tr>
{{ range $item := .Site.Params.socialIcons }}
<td>
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}">
<span class="{{ $item.icon }} fa-2x" aria-hidden="true">&nbsp;</span>
</a>
</td>
{{ end }}
<td>
<!-- RSS -->
{{ with .OutputFormats.Get "rss" -}}
<a href="{{ printf .Permalink }}" aria-label="RSS feed" rel="me">
<span class="fas fa-rss fa-2x" aria-hidden="true">&nbsp;</span>
</a>
{{ end -}}
</td>
</tr>
</table>
<div class="footer">
<div class="by_farbox">&copy; {{ .Site.Params.author }} {{ now.Format "2006"}} </div>
</div>
</div>