basho/author.hbs
2025-06-11 22:59:02 +10:00

53 lines
2.0 KiB
Handlebars

{{!< default}}
{{#author}}
<div class="archive-section{{#if profile_image}} is-image{{/if}}{{>partial_mode}}">
{{#if profile_image}}
<div class="archive-image global-image">
{{>images/other_image other_image=profile_image alt=name}}
</div>
{{/if}}
<h1 class="archive-title global-title">{{name}}</h1>
{{#has any="location,website,twitter,facebook,linkedin,bluesky,threads,mastodon,tiktok,youtube,instagram"}}
<div class="archive-social">
{{#if location}}
<span>{{>icons/site/pin}}{{location}}</span>
{{/if}}
{{#if website}}
<a href="{{website}}" target="_blank" rel="noopener">{{>icons/site/link}}{{t "Website"}}</a>
{{/if}}
{{#if twitter}}
<a href="{{social_url type="twitter"}}" target="_blank" rel="noopener">{{>icons/social/x}}X</a>
{{/if}}
{{#if facebook}}
<a href="{{social_url type="facebook"}}" target="_blank" rel="noopener">{{>icons/social/facebook}}Facebook</a>
{{/if}}
{{#if linkedin}}
<a href="{{social_url type="linkedin"}}" target="_blank" rel="noopener">{{>icons/social/linkedin}}LinkedIn</a>
{{/if}}
{{#if bluesky}}
<a href="{{social_url type="bluesky"}}" target="_blank" rel="noopener">{{>icons/social/bluesky}}Bluesky</a>
{{/if}}
{{#if threads}}
<a href="{{social_url type="threads"}}" target="_blank" rel="noopener">{{>icons/social/threads}}Threads</a>
{{/if}}
{{#if mastodon}}
<a href="{{social_url type="mastodon"}}" target="_blank" rel="noopener">{{>icons/social/mastodon}}Mastodon</a>
{{/if}}
{{#if tiktok}}
<a href="{{social_url type="tiktok"}}" target="_blank" rel="noopener">{{>icons/social/tiktok}}TikTok</a>
{{/if}}
{{#if youtube}}
<a href="{{social_url type="youtube"}}" target="_blank" rel="noopener">{{>icons/social/youtube}}YouTube</a>
{{/if}}
{{#if instagram}}
<a href="{{social_url type="instagram"}}" target="_blank" rel="noopener">{{>icons/social/instagram}}Instagram</a>
{{/if}}
</div>
{{/has}}
{{#if bio}}
<p class="archive-excerpt global-excerpt">{{bio}}</p>
{{/if}}
</div>
{{/author}}
{{>loop}}
{{pagination}}