mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 00:08:40 +00:00
36 lines
1.5 KiB
HTML
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"> </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"> </span>
|
|
</a>
|
|
{{ end -}}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="footer">
|
|
<div class="by_farbox">© {{ .Site.Params.author }} {{ now.Format "2006"}} </div>
|
|
</div>
|
|
</div>
|