40 lines
1.8 KiB
Handlebars
40 lines
1.8 KiB
Handlebars
<section class="gh-archive gh-outer">
|
|
<div class="gh-archive-inner gh-inner">
|
|
<header class="gh-archive-header">
|
|
{{#if profile_image}}
|
|
<figure class="gh-archive-image">
|
|
<img
|
|
srcset="{{img_url profile_image size="s"}} 300w,
|
|
{{img_url profile_image size="m"}} 720w,
|
|
{{img_url profile_image size="l"}} 960w,
|
|
{{img_url profile_image size="xl"}} 1200w,
|
|
{{img_url profile_image size="xxl"}} 2000w"
|
|
sizes="(max-width: 1200px) 100vw, 1200px"
|
|
src="{{img_url profile_image size="xl"}}"
|
|
alt="{{name}}"
|
|
>
|
|
</figure>
|
|
{{/if}}
|
|
<h1 class="gh-archive-title">{{name}}</h1>
|
|
{{#if bio}}
|
|
<p class="gh-archive-description">{{bio}}</p>
|
|
{{/if}}
|
|
<div class="gh-archive-meta">
|
|
{{#if location}}
|
|
<div class="gh-archive-location">{{location}}</div>
|
|
{{/if}}
|
|
<div class="gh-archive-social">
|
|
{{#if website}}
|
|
<a href="{{website}}" target="_blank" rel="noopener">{{website}}</a>
|
|
{{/if}}
|
|
{{#if facebook}}
|
|
<a href="{{facebook_url}}" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
|
|
{{/if}}
|
|
{{#if twitter}}
|
|
<a href="{{twitter_url}}" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</div>
|
|
</section> |