June 2026 Production theme

This commit is contained in:
2026-06-13 21:33:23 -05:00
commit 2463a228e9
112 changed files with 12813 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{{#if comments}}
<section class="gh-comments gh-canvas">
<header class="gh-comments-header">
<h3 class="gh-comments-title related-title">Member discussion</h3>
{{comment_count class="gh-comments-count"}}
</header>
{{comments title="" count=false}}
</section>
{{/if}}
+20
View File
@@ -0,0 +1,20 @@
{{{html}}}
<section class="single-cta">
{{#has visibility="paid"}}
<h2 class="single-cta-title">{{t "This post is for paying subscribers only"}}</h2>
{{/has}}
{{#has visibility="members"}}
<h2 class="single-cta-title">{{t "This post is for subscribers only"}}</h2>
{{/has}}
{{#has visibility="filter"}}
<h2 class="single-cta-title">{{t "This post is for subscribers on the {tiers} only" tiers=tiers}}</h2>
{{/has}}
{{#if @member}}
<button class="button single-cta-button" data-portal="account/plans">{{t "Upgrade now"}}</button>
{{else}}
<button class="button single-cta-button" data-portal="signup">{{t "Subscribe now"}}</button>
<br>
<button class="button-text single-cta-footer" data-portal="signin">{{t "Already have an account?"}} {{t "Sign in"}}</button>
{{/if}}
</section>
+111
View File
@@ -0,0 +1,111 @@
<article class="single {{post_class}}">
{{#match @page.show_title_and_feature_image}}
<header class="single-header gh-canvas">
<h1 class="single-title">{{title}}</h1>
{{#is "post"}}
<div class="single-meta">
{{#if reading_time}}
<span class="single-meta-item single-meta-length">
{{reading_time minute=(t "1 min read") minutes=(t "% min read")}}
</span>
{{/if}}
{{#primary_tag}}
<span class="single-meta-item single-meta-tag">
<a class="post-tag post-tag-{{slug}}" href="{{url}}">
{{name}}
</a>
</span>
{{/primary_tag}}
{{!-- <br/>
<span class="single-meta-item single-meta-date">
<time datetime="{{date format="YYYY-MM-DD"}}">
{{date published_at format="DD MMM YYYY"}}
</time>
</span> --}}
</div>
{{/is}}
{{#if custom_excerpt}}
<div class="single-excerpt">
<i>{{custom_excerpt}}</i>
</div>
{{/if}}
{{#if feature_image}}
{{#unless no_image}}
<figure class="single-media kg-width-{{width}}">
<div class="u-placeholder horizontal">
<img
class="u-object-fit"
srcset="{{> srcset}}"
sizes="(min-width: 1200px) 920px, 92vw"
src="{{img_url feature_image size="l"}}"
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
>
</div>
{{#if feature_image_caption}}
<figcaption>{{feature_image_caption}}</figcaption>
{{/if}}
</figure>
{{/unless}}
{{/if}}
</header>
{{/match}}
<div class="single-content gh-content gh-canvas">
{{content}}
</div>
{{!-- <div class="gh-meta-share">
<a href="#/share" class="gh-button-share">{{t "Share"}} {{> "icons/share"}}</a>
</div> --}}
{{#is "post"}}
<div class="gh-canvas">
<footer class="single-footer">
<div class="single-footer-left">
{{#prev_post}}
<div class="navigation navigation-previous">
<a class="navigation-link" href="{{url}}" aria-label="{{t "Previous post"}}">
{{> "icons/arrow-left"}}
</a>
</div>
{{/prev_post}}
</div>
<div class="single-footer-middle">
{{#if @custom.show_author}}
<div class="single-footer-top">
<h3 class="single-footer-title">{{t "Published by:"}}</h3>
<div class="author-list">
{{#foreach authors}}
<div class="author-image-placeholder u-placeholder square">
<a href="{{url}}" title="{{name}}">
<img class="author-image u-object-fit" src="{{img_url profile_image size="xs"}}" alt="{{name}}" loading="lazy">
</a>
</div>
{{/foreach}}
</div>
</div>
{{/if}}
</div>
<div class="single-footer-right">
{{#next_post}}
<div class="navigation navigation-next">
<a class="navigation-link" href="{{url}}" aria-label="{{t "Next post"}}">
{{> "icons/arrow-right"}}
</a>
</div>
{{/next_post}}
</div>
</footer>
</div>
{{/is}}
</article>
+22
View File
@@ -0,0 +1,22 @@
<div class="cover gh-outer">
<div class="cover-content gh-inner">
{{#if @site.icon}}
<div class="cover-icon">
<img class="cover-icon-image" src="{{@site.icon}}" alt="{{@site.title}}">
</div>
{{/if}}
{{#if @site.description}}
<div class="cover-description"><i>A people company<br/>built around technology</i></div>
{{/if}}
{{!-- {{#if @site.members_enabled}}
{{#unless @member}}
<div class="cover-cta">
<button class="button members-subscribe" data-portal="signup">{{t "Subscribe now"}}</button>
<button class="button button-secondary members-login" data-portal="signin">{{t "Login"}}</button>
</div>
{{/unless}}
{{/if}} --}}
</div>
</div>
+33
View File
@@ -0,0 +1,33 @@
{{#get "posts" filter="featured:true" limit="15" as |featured|}}
{{#if featured}}
<div class="gh-outer">
<section class="featured-wrapper gh-inner">
{{#if @custom.featured_title}}
<h2 class="featured-title">{{@custom.featured_title}}</h2>
{{/if}}
<div class="featured-feed owl">
{{#foreach featured}}
<article class="{{post_class}}">
<div class="u-placeholder horizontal">
{{#if feature_image}}
<img
class="u-object-fit"
srcset="{{> srcset}}"
sizes="(min-width: 992px) calc((92vw - 60px) / 3), (min-width: 768px) calc((92vw - 30px) / 2), 92vw"
src="{{img_url feature_image size="m"}}"
alt="{{title}}"
>
{{/if}}
</div>
<h3 class="post-title">{{title}}</h3>
<a class="u-permalink" href={{url}} aria-label="{{title}}"></a>
</article>
{{/foreach}}
</div>
</section>
</div>
{{/if}}
{{/get}}
+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon navigation-icon">
<path d="M26.667 14.667v2.667h-16L18 24.667l-1.893 1.893L5.547 16l10.56-10.56L18 7.333l-7.333 7.333h16z"></path>
</svg>

After

Width:  |  Height:  |  Size: 233 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon navigation-icon">
<path d="M5.333 14.667v2.667h16L14 24.667l1.893 1.893L26.453 16 15.893 5.44 14 7.333l7.333 7.333h-16z"></path>
</svg>

After

Width:  |  Height:  |  Size: 231 B

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-bluesky" xmlns="http://www.w3.org/2000/svg">
<path d="M16 15.1499C14.5515 12.1717 10.605 6.62207 6.9365 3.88464C4.28951 1.90994 0 0.381493 0 5.24419C0 6.21495 0.559993 13.4025 0.889 14.5694C2.031 18.6258 6.1935 19.6604 9.896 19.0344C3.424 20.1289 1.778 23.7545 5.3335 27.38C12.086 34.2658 15.0389 25.6524 15.7951 23.4454C15.935 23.0378 16 22.8487 16 23.016C16 22.8487 16.065 23.0378 16.2049 23.4454C16.9611 25.6524 19.914 34.2658 26.6666 27.38C30.222 23.7545 28.576 20.1289 22.104 19.0344C25.8065 19.6604 29.969 18.6258 31.111 14.5694C31.44 13.4025 32 6.21495 32 5.24419C32 0.381493 27.711 1.90994 25.0635 3.88464C21.395 6.62207 17.4485 12.1717 16 15.1499Z"/>
</svg>

After

Width:  |  Height:  |  Size: 732 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon feed-icon">
<path d="M11.453 22.107L17.56 16l-6.107-6.12L13.333 8l8 8-8 8-1.88-1.893z"></path>
</svg>

After

Width:  |  Height:  |  Size: 197 B

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-facebook" xmlns="http://www.w3.org/2000/svg">
<path d="M31.9975 15.9988C31.9975 7.16288 24.8347 0 15.9988 0C7.16288 0 0 7.16288 0 15.9988C0 23.9843 5.85052 30.6029 13.4989 31.8032V20.6235H9.43677V15.9988H13.4989V12.474C13.4989 8.46435 15.8875 6.24952 19.5419 6.24952C21.2923 6.24952 23.1232 6.56199 23.1232 6.56199V10.4992H21.1059C19.1184 10.4992 18.4985 11.7324 18.4985 12.9977V15.9988H22.9357L22.2264 20.6235H18.4985V31.8032C26.1471 30.6029 31.9975 23.9843 31.9975 15.9988Z"/>
</svg>

After

Width:  |  Height:  |  Size: 551 B

+5
View File
@@ -0,0 +1,5 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-instagram" xmlns="http://www.w3.org/2000/svg">
<path d="M15.9997 3.97616C19.9157 3.97616 20.3797 3.99083 21.9263 4.0615C22.8562 4.07233 23.7772 4.24327 24.649 4.56683C25.2863 4.80164 25.8628 5.17665 26.3357 5.66416C26.8232 6.13708 27.1982 6.7135 27.433 7.35083C27.7566 8.22263 27.9275 9.14365 27.9383 10.0735C28.009 11.6202 28.0237 12.0842 28.0237 16.0002C28.0237 19.9162 28.009 20.3802 27.9383 21.9268C27.9275 22.8567 27.7566 23.7777 27.433 24.6495C27.1889 25.2821 26.8151 25.8567 26.3356 26.3361C25.8562 26.8156 25.2816 27.1894 24.649 27.4335C23.7772 27.7571 22.8562 27.928 21.9263 27.9388C20.3797 28.0095 19.9157 28.0242 15.9997 28.0242C12.0837 28.0242 11.6197 28.0095 10.073 27.9388C9.14317 27.928 8.22214 27.7571 7.35034 27.4335C6.71301 27.1987 6.13659 26.8237 5.66367 26.3362C5.17616 25.8632 4.80115 25.2868 4.56634 24.6495C4.24278 23.7777 4.07184 22.8567 4.06101 21.9268C3.99034 20.3802 3.97567 19.9162 3.97567 16.0002C3.97567 12.0842 3.99034 11.6202 4.06101 10.0735C4.07184 9.14365 4.24278 8.22263 4.56634 7.35083C4.80115 6.7135 5.17616 6.13708 5.66367 5.66416C6.13659 5.17665 6.71301 4.80164 7.35034 4.56683C8.22214 4.24327 9.14317 4.07233 10.073 4.0615C11.6197 3.99083 12.0837 3.97616 15.9997 3.97616ZM15.9997 1.3335C12.017 1.3335 11.517 1.35083 9.95301 1.4215C8.73645 1.44664 7.53287 1.67699 6.39301 2.10283C5.41774 2.48039 4.53221 3.05775 3.79329 3.79781C3.05437 4.53788 2.47839 5.42431 2.10234 6.40016C1.6765 7.54003 1.44615 8.74361 1.42101 9.96016C1.35034 11.5175 1.33301 12.0175 1.33301 16.0002C1.33301 19.9828 1.35034 20.4828 1.42101 22.0468C1.44615 23.2634 1.6765 24.467 2.10234 25.6068C2.4799 26.5821 3.05726 27.4676 3.79733 28.2065C4.5374 28.9455 5.42382 29.5214 6.39967 29.8975C7.53954 30.3233 8.74312 30.5537 9.95967 30.5788C11.517 30.6495 12.017 30.6668 15.9997 30.6668C19.9823 30.6668 20.4823 30.6495 22.0463 30.5788C23.2629 30.5537 24.4665 30.3233 25.6063 29.8975C26.5816 29.5199 27.4671 28.9426 28.2061 28.2025C28.945 27.4624 29.521 26.576 29.897 25.6002C30.3229 24.4603 30.5532 23.2567 30.5783 22.0402C30.649 20.4828 30.6663 19.9828 30.6663 16.0002C30.6663 12.0175 30.649 11.5175 30.5783 9.9535C30.5532 8.73694 30.3229 7.53336 29.897 6.3935C29.5194 5.41823 28.9421 4.5327 28.202 3.79378C27.462 3.05486 26.5755 2.47888 25.5997 2.10283C24.4598 1.67699 23.2562 1.44664 22.0397 1.4215C20.4823 1.35083 19.9823 1.3335 15.9997 1.3335Z"/>
<path d="M15.9998 8.46826C14.5101 8.46826 13.0539 8.91001 11.8152 9.73763C10.5766 10.5653 9.6112 11.7416 9.04112 13.1179C8.47104 14.4942 8.32188 16.0086 8.6125 17.4697C8.90313 18.9307 9.62048 20.2728 10.6738 21.3262C11.7272 22.3796 13.0693 23.0969 14.5304 23.3875C15.9914 23.6782 17.5059 23.529 18.8821 22.9589C20.2584 22.3888 21.4348 21.4234 22.2624 20.1848C23.09 18.9462 23.5318 17.49 23.5318 16.0003C23.5318 14.0027 22.7382 12.0869 21.3257 10.6743C19.9132 9.26181 17.9974 8.46826 15.9998 8.46826ZM15.9998 20.8896C15.0328 20.8896 14.0875 20.6028 13.2834 20.0656C12.4794 19.5283 11.8527 18.7647 11.4826 17.8713C11.1126 16.9779 11.0157 15.9948 11.2044 15.0464C11.393 14.098 11.8587 13.2268 12.5425 12.543C13.2263 11.8592 14.0975 11.3935 15.0459 11.2049C15.9944 11.0162 16.9774 11.113 17.8708 11.4831C18.7643 11.8532 19.5279 12.4798 20.0651 13.2839C20.6024 14.0879 20.8891 15.0332 20.8891 16.0003C20.8891 17.297 20.374 18.5406 19.4571 19.4575C18.5401 20.3745 17.2965 20.8896 15.9998 20.8896Z"/>
<path d="M23.8293 9.93064C24.8014 9.93064 25.5893 9.14267 25.5893 8.17064C25.5893 7.19862 24.8014 6.41064 23.8293 6.41064C22.8573 6.41064 22.0693 7.19862 22.0693 8.17064C22.0693 9.14267 22.8573 9.93064 23.8293 9.93064Z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-linkedin" xmlns="http://www.w3.org/2000/svg">
<path d="M28.75 1H3.25C2.65327 1 2.08097 1.23705 1.65902 1.65902C1.23705 2.08097 1 2.65327 1 3.25V28.75C1 29.3467 1.23705 29.919 1.65902 30.341C2.08097 30.763 2.65327 31 3.25 31H28.75C29.3467 31 29.919 30.763 30.341 30.341C30.763 29.919 31 29.3467 31 28.75V3.25C31 2.65327 30.763 2.08097 30.341 1.65902C29.919 1.23705 29.3467 1 28.75 1ZM10 26.5H5.5V13H10V26.5ZM7.75 10.375C7.23427 10.3603 6.73433 10.1939 6.31263 9.89662C5.89093 9.59937 5.56617 9.18443 5.37895 8.70367C5.19172 8.2229 5.15032 7.69762 5.25992 7.19345C5.3695 6.6893 5.62525 6.2286 5.99517 5.86897C6.3651 5.50932 6.8328 5.26665 7.33985 5.1713C7.8469 5.07593 8.3708 5.13212 8.8461 5.33282C9.3214 5.5335 9.72703 5.86982 10.0123 6.29972C10.2975 6.72963 10.4498 7.23407 10.45 7.75C10.4381 8.45552 10.1475 9.12767 9.64158 9.61955C9.13565 10.1114 8.45558 10.383 7.75 10.375ZM26.5 26.5H22V19.39C22 17.26 21.1 16.495 19.93 16.495C19.587 16.5178 19.2518 16.6082 18.9438 16.761C18.6358 16.9137 18.361 17.1258 18.1352 17.385C17.9095 17.6443 17.737 17.9457 17.628 18.2717C17.519 18.5977 17.4755 18.942 17.5 19.285C17.4925 19.3548 17.4925 19.4252 17.5 19.495V26.5H13V13H17.35V14.95C17.7888 14.2825 18.3917 13.7388 19.1008 13.3712C19.81 13.0035 20.6017 12.824 21.4 12.85C23.725 12.85 26.44 14.14 26.44 18.34L26.5 26.5Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-mastodon" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.6691 24.3902C26.5646 23.9114 29.9563 21.441 30.3826 19.1837C31.0543 15.6278 30.9989 10.5061 30.9989 10.5061C30.9989 3.56433 26.5802 1.52959 26.5802 1.52959C24.3522 0.476359 20.5264 0.0334469 16.5518 0H16.4541C12.4795 0.0334469 8.6562 0.476359 6.42808 1.52959C6.42808 1.52959 2.00919 3.56433 2.00919 10.5061C2.00919 10.9269 2.00708 11.3696 2.00488 11.8304C1.99877 13.1101 1.99199 14.5299 2.02795 16.0119C2.18842 22.8006 3.23715 29.4912 9.33526 31.1525C12.147 31.9185 14.561 32.0788 16.5052 31.9688C20.031 31.7676 22.0102 30.6737 22.0102 30.6737L21.8939 28.0407C21.8939 28.0407 19.3744 28.8584 16.5447 28.7588C13.7413 28.6598 10.7816 28.4476 10.3282 24.9048C10.2863 24.5936 10.2654 24.2609 10.2654 23.9114C10.2654 23.9114 13.0175 24.6038 16.5052 24.7683C18.6379 24.869 20.6378 24.6397 22.6691 24.3902ZM25.7866 19.45V11.0446C25.7866 9.32675 25.3617 7.96164 24.5083 6.95168C23.6279 5.94172 22.4751 5.42399 21.0443 5.42399C19.3885 5.42399 18.1348 6.07896 17.306 7.38908L16.5 8.77954L15.6941 7.38908C14.8651 6.07896 13.6114 5.42399 11.9558 5.42399C10.5248 5.42399 9.37205 5.94172 8.49182 6.95168C7.63823 7.96164 7.21328 9.32675 7.21328 11.0446V19.45H10.4486V11.2917C10.4486 9.57192 11.1516 8.69902 12.5578 8.69902C14.1125 8.69902 14.8919 9.7345 14.8919 11.782V16.2475H18.1082V11.782C18.1082 9.7345 18.8874 8.69902 20.4421 8.69902C21.8483 8.69902 22.5513 9.57192 22.5513 11.2917V19.45H25.7866Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" width="20" height="20"><path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path></svg>

After

Width:  |  Height:  |  Size: 248 B

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-forward-icon lucide-forward"><path d="m15 17 5-5-5-5"/><path d="M4 18v-2a4 4 0 0 1 4-4h12"/></svg>

After

Width:  |  Height:  |  Size: 300 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon icon-star">
<path d="M16 23.027L24.24 28l-2.187-9.373 7.28-6.307-9.587-.827-3.747-8.827-3.747 8.827-9.587.827 7.267 6.307L7.759 28l8.24-4.973z"></path>
</svg>

After

Width:  |  Height:  |  Size: 254 B

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-threads" xmlns="http://www.w3.org/2000/svg">
<path d="M24.0099 14.8315C23.8747 14.7653 23.7375 14.7017 23.5983 14.6409C23.3561 10.0897 20.9173 7.48416 16.8219 7.4575C16.8034 7.45739 16.785 7.45739 16.7665 7.45739C14.317 7.45739 12.2798 8.52349 11.0259 10.4635L13.2782 12.0388C14.2149 10.5897 15.6849 10.2808 16.7676 10.2808C16.78 10.2808 16.7925 10.2808 16.8049 10.2809C18.1534 10.2897 19.1709 10.6894 19.8294 11.469C20.3086 12.0366 20.6292 12.8208 20.7878 13.8106C19.5924 13.6034 18.2995 13.5397 16.9173 13.6206C13.0238 13.8493 10.5207 16.1647 10.6888 19.382C10.7741 21.014 11.5715 22.418 12.9339 23.3352C14.0858 24.1105 15.5695 24.4897 17.1114 24.4038C19.1476 24.29 20.7451 23.4978 21.8596 22.0494C22.7059 20.9494 23.2411 19.5239 23.4776 17.7277C24.4479 18.3248 25.1671 19.1107 25.5644 20.0553C26.2398 21.6612 26.2791 24.3 24.1675 26.4514C22.3173 28.3361 20.0933 29.1514 16.7323 29.1765C13.0041 29.1484 10.1844 27.9291 8.35118 25.5529C6.63448 23.3277 5.74729 20.1136 5.71418 16C5.74729 11.8863 6.63448 8.67226 8.35118 6.44711C10.1844 4.07082 13.004 2.85167 16.7323 2.82341C20.4877 2.85189 23.3564 4.07689 25.2598 6.46467C26.1932 7.63561 26.8968 9.10814 27.3606 10.8251L30 10.107C29.4378 7.99369 28.5529 6.17261 27.349 4.66234C24.9087 1.60111 21.3399 0.0325307 16.7415 0H16.7231C12.1341 0.0324059 8.60519 1.60696 6.23447 4.67988C4.12487 7.4144 3.03668 11.2193 3.00011 15.9888L3 16L3.00011 16.0112C3.03668 20.7806 4.12487 24.5857 6.23447 27.3202C8.60519 30.393 12.1341 31.9677 16.7231 32H16.7415C20.8214 31.9711 23.6972 30.882 26.0662 28.4684C29.166 25.3111 29.0725 21.3532 28.051 18.9236C27.3181 17.1812 25.9208 15.766 24.0099 14.8315ZM16.9656 21.5845C15.2592 21.6826 13.4864 20.9015 13.3989 19.2287C13.3341 17.9884 14.2645 16.6044 17.0703 16.4394C17.3916 16.4205 17.707 16.4113 18.0166 16.4113C19.0358 16.4113 19.9893 16.5123 20.856 16.7056C20.5327 20.8225 18.6364 21.491 16.9656 21.5845Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-tiktok" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5858 11.916V17.412C12.8936 17.2295 12.1693 17.2046 11.4662 17.3392C10.7631 17.4738 10.0992 17.7645 9.52345 18.1898C8.94766 18.6151 8.47465 19.1642 8.1393 19.7967C7.80395 20.4291 7.6148 21.1287 7.58579 21.844C7.54615 22.4598 7.63881 23.077 7.85757 23.654C8.07632 24.2311 8.41609 24.7546 8.85402 25.1893C9.29196 25.6241 9.81791 25.9601 10.3965 26.1747C10.9751 26.3892 11.5929 26.4774 12.2085 26.4333C12.8302 26.481 13.4549 26.3932 14.0394 26.1758C14.6239 25.9585 15.1542 25.6168 15.5937 25.1745C16.0333 24.7322 16.3716 24.1997 16.5852 23.6139C16.7988 23.028 16.8827 22.4028 16.8311 21.7813V0H22.2671C23.1911 5.75333 26.0685 7.088 29.9205 7.704V13.2173C27.251 12.9984 24.6759 12.1286 22.4205 10.684V21.5733C22.4205 26.5067 19.5005 32 12.2511 32C10.8911 31.9941 9.5459 31.7167 8.29444 31.1841C7.04298 30.6515 5.91043 29.8745 4.96317 28.8986C4.01591 27.9226 3.273 26.7674 2.77799 25.5006C2.28299 24.2338 2.04584 22.881 2.08046 21.5213C2.12353 20.1058 2.46613 18.7155 3.08567 17.4421C3.70521 16.1686 4.58762 15.0409 5.67473 14.1333C6.76184 13.2257 8.02897 12.5589 9.39259 12.1767C10.7562 11.7945 12.1853 11.7056 13.5858 11.916Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon icon-twitter">
<path d="M29.947 8a11.423 11.423 0 0 1-3.28.92 5.738 5.738 0 0 0 2.507-3.173 11.52 11.52 0 0 1-3.627 1.4C24.494 6 23.014 5.334 21.334 5.334c-3.133 0-5.693 2.56-5.693 5.72 0 .453.053.893.147 1.307A16.261 16.261 0 0 1 4.001 6.388a5.663 5.663 0 0 0-.773 2.867c0 1.987 1 3.747 2.547 4.747-.947 0-1.827-.267-2.6-.667v.04a5.724 5.724 0 0 0 4.587 5.613 5.644 5.644 0 0 1-2.574.093c.72 2.253 2.813 3.933 5.333 3.973-1.947 1.547-4.413 2.453-7.107 2.453-.453 0-.907-.027-1.36-.08A16.19 16.19 0 0 0 10.827 28c10.507 0 16.28-8.72 16.28-16.28 0-.253 0-.493-.013-.747A11.42 11.42 0 0 0 29.947 8z"></path>
</svg>

After

Width:  |  Height:  |  Size: 708 B

+1
View File
@@ -0,0 +1 @@
<svg viewBox="0 0 24 24" fill="currentColor"><g><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>

After

Width:  |  Height:  |  Size: 231 B

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox="0 0 32 32" fill="currentColor" class="icon icon-youtube" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.5018 3.80644C29.8795 4.25094 30.9621 5.55587 31.3309 7.21637C31.9973 10.2231 32 16.5 32 16.5C32 16.5 32 22.777 31.3309 25.7837C30.9621 27.4442 29.8795 28.7491 28.5018 29.1935C26.0073 30 16 30 16 30C16 30 5.99275 30 3.49818 29.1935C2.12052 28.7491 1.03787 27.4442 0.669074 25.7837C0 22.777 0 16.5 0 16.5C0 16.5 0 10.2231 0.669074 7.21637C1.03787 5.55587 2.12052 4.25094 3.49818 3.80644C5.99275 3 16 3 16 3C16 3 26.0073 3 28.5018 3.80644ZM21.3538 16.5005L12.6443 21.741V11.2599L21.3538 16.5005Z"/>
</svg>

After

Width:  |  Height:  |  Size: 666 B

+16
View File
@@ -0,0 +1,16 @@
<article class="feed {{visibility}} {{post_class}}">
<h2 class="feed-title">{{title}}</h2>
<div class="feed-right">
{{!-- {{> "icons/star"}} --}}
<div class="feed-length">
{{reading_time}}
</div>
</div>
{{!-- {{> "icons/chevron-right"}} --}}
<a class="u-permalink" href="{{url}}" aria-label="{{title}}"></a>
</article>
+25
View File
@@ -0,0 +1,25 @@
<article class="feed {{visibility}} {{post_class}}">
<div class="feed-calendar">
<div class="feed-calendar-day">
{{date published_at format="DD"}}
</div>
<div class="feed-calendar-month">
{{date published_at format="MMM"}}
</div>
</div>
<h2 class="feed-title">{{title}}</h2>
<div class="feed-right">
{{> "icons/star"}}
<div class="feed-length">
{{reading_time minute=(t "1 min read") minutes=(t "% min read")}}
</div>
</div>
{{> "icons/chevron-right"}}
<a class="u-permalink" href="{{url}}" aria-label="{{title}}"></a>
</article>
+3
View File
@@ -0,0 +1,3 @@
<nav class="load-more">
<button class="button button-secondary gh-loadmore">Load more</button>
</nav>
+41
View File
@@ -0,0 +1,41 @@
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="{{t "Close (Esc)"}}"></button>
<button class="pswp__button pswp__button--share" title="{{t "Share"}}"></button>
<button class="pswp__button pswp__button--fs" title="{{t "Toggle fullscreen"}}"></button>
<button class="pswp__button pswp__button--zoom" title="{{t "Zoom in/out"}}"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="{{t "Previous (arrow left)"}}"></button>
<button class="pswp__button pswp__button--arrow--right" title="{{t "Next (arrow right)"}}"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
+12
View File
@@ -0,0 +1,12 @@
{{#get "posts" limit="5" filter="tags:[{{post.tags}}]+id:-{{post.id}}" as |related|}}
{{#if related}}
<section class="related-wrapper gh-canvas">
<h3 class="related-title">{{t "You might also like..."}}</h3>
<div class="related-feed">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
</section>
{{/if}}
{{/get}}
+4
View File
@@ -0,0 +1,4 @@
{{img_url feature_image size="s"}} 400w,
{{img_url feature_image size="m"}} 750w,
{{img_url feature_image size="l"}} 960w,
{{img_url feature_image size="xl"}} 1140w