2014-07-21 12:45:34 +00:00
|
|
|
{{!< default}}
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
<main id="site-main" class="site-main outer">
|
|
|
|
<div class="post-feed inner">
|
2021-03-04 01:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#author}}
|
|
|
|
<section class="post-card post-card-large">
|
2021-03-04 22:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#if feature_image}}
|
|
|
|
<div class="post-card-image-link">
|
|
|
|
{{!-- This is a responsive image, it loads different sizes depending on device
|
|
|
|
https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433 --}}
|
|
|
|
<img class="post-card-image"
|
|
|
|
srcset="{{img_url feature_image size="s"}} 300w,
|
|
|
|
{{img_url feature_image size="m"}} 600w,
|
|
|
|
{{img_url feature_image size="l"}} 1000w,
|
|
|
|
{{img_url feature_image size="xl"}} 2000w"
|
|
|
|
sizes="(max-width: 1000px) 400px, 800px"
|
|
|
|
src="{{img_url feature_image size="m"}}"
|
|
|
|
alt="{{title}}"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2021-03-04 22:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
<div class="post-card-content">
|
|
|
|
<div class="post-card-content-link">
|
2021-03-04 22:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#if profile_image}}
|
2021-03-04 22:22:45 +00:00
|
|
|
<img class="author-profile-pic" src="{{profile_image}}" alt="{{name}}" />
|
2022-05-16 04:08:19 +00:00
|
|
|
{{/if}}
|
2021-03-04 22:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
<header class="post-card-header">
|
|
|
|
<h2 class="post-card-title">{{name}}</h2>
|
|
|
|
</header>
|
2021-03-04 22:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#if bio}}
|
|
|
|
<div class="post-card-excerpt">{{bio}}</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<footer class="author-profile-footer">
|
|
|
|
{{#if location}}
|
|
|
|
<div class="author-profile-location">{{location}}</div>
|
|
|
|
{{/if}}
|
2021-03-04 22:22:45 +00:00
|
|
|
<div class="author-profile-meta">
|
2021-03-04 01:22:45 +00:00
|
|
|
{{#if website}}
|
2022-05-16 04:08:19 +00:00
|
|
|
<a class="author-profile-social-link" href="{{website}}" target="_blank" rel="noopener">{{website}}</a>
|
2021-03-04 01:22:45 +00:00
|
|
|
{{/if}}
|
|
|
|
{{#if twitter}}
|
2022-05-16 04:08:19 +00:00
|
|
|
<a class="author-profile-social-link" href="{{twitter_url}}" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
|
2021-03-04 01:22:45 +00:00
|
|
|
{{/if}}
|
|
|
|
{{#if facebook}}
|
2022-05-16 04:08:19 +00:00
|
|
|
<a class="author-profile-social-link" href="{{facebook_url}}" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
|
2021-03-04 01:22:45 +00:00
|
|
|
{{/if}}
|
2017-06-13 12:48:06 +00:00
|
|
|
</div>
|
2022-05-16 04:08:19 +00:00
|
|
|
</footer>
|
2021-03-04 01:22:45 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
</section>
|
|
|
|
{{/author}}
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
{{#foreach posts}}
|
|
|
|
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
|
|
|
{{> "post-card"}}
|
|
|
|
{{/foreach}}
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2022-05-16 04:08:19 +00:00
|
|
|
</div>
|
|
|
|
</main>
|