init: basho 2.6.3
5767
assets/css/screen.css
Normal file
19
assets/js/global.js
Normal file
117
assets/js/index.js
Normal file
62
assets/js/post.js
Normal file
53
author.hbs
Normal file
@ -0,0 +1,53 @@
|
||||
{{!< 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}}
|
140
custom-account.hbs
Normal file
@ -0,0 +1,140 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
{{#if @member.paid}}
|
||||
<div class="account-section{{>partial_mode}}">
|
||||
<div class="account-header archive-section is-image">
|
||||
<div class="account-image archive-image global-image">
|
||||
{{>icons/site/user}}
|
||||
{{#if @member.avatar_image}}
|
||||
<img src="{{@member.avatar_image}}">
|
||||
{{/if}}
|
||||
</div>
|
||||
<h1 class="archive-title global-title">{{#if @member.name}}{{@member.name}}{{else}}{{t "Your account"}}{{/if}}</h1>
|
||||
<p class="archive-excerpt global-excerpt">
|
||||
{{#if custom_excerpt}}
|
||||
{{custom_excerpt}}
|
||||
{{else}}
|
||||
{{t "Nice, you’re a paying subscriber! You’ve an active account with access to all posts."}}
|
||||
{{/if}}
|
||||
</p>
|
||||
{{#foreach @member.subscriptions}}
|
||||
<div class="account-details">
|
||||
<div class="account-details-wrap global-radius">
|
||||
<h2 class="account-details-title">{{t "Account details"}}</h2>
|
||||
<div class="account-details-content">
|
||||
<div class="account-detail-column">
|
||||
<div>
|
||||
<label class="account-detail-heading">{{t "Email address"}}</label>
|
||||
<span class="account-detail-content">{{@member.email}}</span>
|
||||
</div>
|
||||
<div>
|
||||
<label class="account-detail-heading">{{t "Your plan"}}</label>
|
||||
<span class="account-detail-content">{{tier.name}} — {{price plan}}/{{plan.interval}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account-detail-column">
|
||||
<div>
|
||||
<label class="account-detail-heading">{{t "Card"}}</label>
|
||||
<span class="account-detail-content">**** **** **** {{default_payment_card_last4}}</span>
|
||||
</div>
|
||||
<div>
|
||||
<label class="account-detail-heading">
|
||||
{{#if cancel_at_period_end}}
|
||||
{{t "Expires"}}
|
||||
{{else}}
|
||||
{{t "Next bill date"}}
|
||||
{{/if}}
|
||||
</label>
|
||||
<span class="account-detail-content">{{date current_period_end format="DD MMM YYYY"}}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{#if cancel_at_period_end}}
|
||||
<small class="account-alert-expired">
|
||||
{{t "Your subscription will expire on"}} — {{date current_period_end format="DD MMMM YYYY"}}. {{t "If you change your mind in the meantime you can turn auto-renew back on to continue your subscription."}}
|
||||
</small>
|
||||
{{/if}}
|
||||
<div class="account-signout-wrap">
|
||||
<span class="account-signout global-button" data-members-signout>{{t "Sign out"}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account-buttons">
|
||||
<a href="javascript:" class="account-button" data-portal="account">{{t "Account settings"}}</a>
|
||||
{{cancel_link class="account-button" errorClass="cancel-error global-alert" cancelLabel=(t "Cancel subscription") continueLabel=(t "Continue subscription")}}
|
||||
<a href="javascript:" class="account-button-billing" data-members-edit-billing>
|
||||
{{t "Edit billing info"}} <span>→</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{{/foreach}}
|
||||
</div>
|
||||
</div>
|
||||
{{#get "posts" limit="6" filter="visibility:[members,paid,tiers]+feature_image:-null" include="authors" as |special_posts|}}
|
||||
{{#if special_posts}}
|
||||
{{>related label=(t "The latest posts {start-bold}only for subscribers{end-bold}" start-bold="<span>" end-bold="</span>")}}
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
{{else if @member}}
|
||||
<div class="account-section{{>partial_mode}}">
|
||||
<div class="account-header archive-section is-image">
|
||||
<div class="account-image archive-image global-image">
|
||||
{{>icons/site/user}}
|
||||
{{#if @member.avatar_image}}
|
||||
<img src="{{@member.avatar_image}}">
|
||||
{{/if}}
|
||||
</div>
|
||||
<h1 class="archive-title global-title">{{#if @member.name}}{{@member.name}}{{else}}{{t "Your account"}}{{/if}}</h1>
|
||||
<p class="archive-excerpt global-excerpt">
|
||||
{{#if custom_excerpt}}
|
||||
{{custom_excerpt}}
|
||||
{{else}}
|
||||
{{#if @site.paid_members_enabled}}
|
||||
{{t "Currently, you’re not a paying subscriber. You’ve an active account with access to posts for subscribers only."}}
|
||||
{{else}}
|
||||
{{t "You’ve an active account with access to posts for subscribers."}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
</p>
|
||||
<div class="account-details">
|
||||
<div class="account-details-wrap global-radius">
|
||||
<h2 class="account-details-title">{{t "Account details"}}</h2>
|
||||
<div class="account-details-content">
|
||||
<div class="account-detail-column">
|
||||
<div>
|
||||
<label class="account-detail-heading">{{t "Email address"}}</label>
|
||||
<span class="account-detail-content">{{@member.email}}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{#if @site.paid_members_enabled}}
|
||||
<div class="account-detail-column">
|
||||
<div>
|
||||
<label class="account-detail-heading">{{t "Your plan"}}</label>
|
||||
<span class="account-detail-content">{{t "Free"}}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="account-signout-wrap">
|
||||
<span class="account-signout global-button" data-members-signout>{{t "Sign out"}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account-buttons">
|
||||
<a href="javascript:" class="account-button" data-portal="account">{{t "Account settings"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{#if @site.paid_members_enabled}}
|
||||
{{>members/tiers}}
|
||||
{{/if}}
|
||||
{{#get "posts" limit="6" filter="visibility:[members,paid,tiers]+feature_image:-null" include="authors" as |special_posts|}}
|
||||
{{#if special_posts}}
|
||||
{{>related label=(t "The latest posts {start-bold}only for subscribers{end-bold}" start-bold="<span>" end-bold="</span>")}}
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
{{else}}
|
||||
{{#contentFor "script_js"}}
|
||||
<script>window.addEventListener("load",function(){window.location='{{@site.url}}'})</script>
|
||||
{{/contentFor}}
|
||||
{{/if}}
|
||||
{{/post}}
|
43
custom-authors.hbs
Normal file
@ -0,0 +1,43 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
<div class="archive-section{{>partial_mode}}">
|
||||
<h1 class="global-title">{{title}}</h1>
|
||||
{{#if custom_excerpt}}
|
||||
<p class="archive-excerpt global-excerpt">{{custom_excerpt}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="custom-archive loop-section global-padding">
|
||||
<div class="global-subtitle">
|
||||
<small class="global-subtitle-title">
|
||||
{{{t "Meet our {start-bold}authors{end-bold}" start-bold="<span>" end-bold="</span>"}}}
|
||||
</small>
|
||||
</div>
|
||||
{{#get "authors" limit="all" include="count.posts" order="count.posts desc" as |authors|}}
|
||||
{{#if authors}}
|
||||
<div class="loop-wrap is-authors">
|
||||
{{#foreach authors}}
|
||||
{{#if count.posts}}
|
||||
<div class="item is-loop">
|
||||
{{#if profile_image}}
|
||||
<div class="item-image global-image global-image-orientation global-radius">
|
||||
<a href="{{url}}" class="global-link" aria-label="{{name}}"></a>
|
||||
{{>images/archive_image archive_image=profile_image}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="item-content">
|
||||
<h2 class="item-title"><a href="{{url}}">{{name}}</a></h2>
|
||||
<small>{{#if location}}{{t "from"}} {{location}} ∙ {{/if}}{{plural count.posts empty=(t "No posts") singular=(t "1 post") plural=(t "% posts")}}</small>
|
||||
{{#if bio}}
|
||||
<p class="item-excerpt">
|
||||
{{bio}}
|
||||
</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
</div>
|
||||
{{/post}}
|
25
custom-contact.hbs
Normal file
@ -0,0 +1,25 @@
|
||||
{{!< default-custom}}
|
||||
{{#post}}
|
||||
<div class="custom-wrap{{>partial_mode}}">
|
||||
{{#if feature_image}}
|
||||
<div class="custom-image global-bg-image" style="background-image: url({{{img_url feature_image size="l" format="webp"}}})"></div>
|
||||
{{/if}}
|
||||
<div class="custom-container">
|
||||
<div class="custom-logo-wrap">
|
||||
<div class="custom-logo">
|
||||
{{>logo}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="custom-content">
|
||||
<form method="POST" action="{{@custom.contact_form_endpoint}}">
|
||||
<h1 class="custom-title global-title">{{title}}</h1>
|
||||
<input type="text" name="name" placeholder="{{t "Your name"}}" aria-label="{{t "Your name"}}" required>
|
||||
<input type="email" name="email" placeholder="{{t "Your email address"}}" aria-label="{{t "Your email address"}}" required>
|
||||
<label for="message">{{t "Your message"}}</label>
|
||||
<textarea id="message" name="message" required></textarea>
|
||||
<button class="global-button" type="submit">{{t "Send message"}}</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/post}}
|
21
custom-membership.hbs
Normal file
@ -0,0 +1,21 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
<div class="post-section">
|
||||
{{>post_header membership_page=true}}
|
||||
</div>
|
||||
{{#if html}}
|
||||
<div class="faq-section global-padding">
|
||||
<div class="faq-wrap">
|
||||
<h2 class="faq-title">{{t "FAQs"}}</h2>
|
||||
<div class="faq-content">
|
||||
{{content}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#get "posts" limit="6" filter="visibility:[members,paid,tiers]+feature_image:-null" include="authors" as |special_posts|}}
|
||||
{{#if special_posts}}
|
||||
{{>related label=(t "The latest posts {start-bold}only for subscribers{end-bold}" start-bold="<span>" end-bold="</span>")}}
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
{{/post}}
|
4
custom-post-center.hbs
Normal file
@ -0,0 +1,4 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
{{>post_content post_center=true}}
|
||||
{{/post}}
|
4
custom-post-classic.hbs
Normal file
@ -0,0 +1,4 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
{{>post_content post_classic=true}}
|
||||
{{/post}}
|
32
custom-sign-in.hbs
Normal file
@ -0,0 +1,32 @@
|
||||
{{!< default-custom}}
|
||||
{{#post}}
|
||||
<div class="custom-wrap{{>partial_mode}}">
|
||||
{{#if feature_image}}
|
||||
<div class="custom-image global-bg-image" style="background-image: url({{{img_url feature_image size="l" format="webp"}}})"></div>
|
||||
{{/if}}
|
||||
<div class="custom-container">
|
||||
<div class="custom-logo-wrap">
|
||||
<div class="custom-logo">
|
||||
{{>logo}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="custom-content">
|
||||
<form data-members-form="signin" data-members-autoredirect="false">
|
||||
<h1 class="custom-title global-title">{{title}}</h1>
|
||||
<input data-members-email type="email" placeholder="{{t "Your email address"}}" aria-label="{{t "Your email address"}}" required>
|
||||
<button class="global-button" type="submit">{{t "Send login link"}}</button>
|
||||
<div>
|
||||
<small class="alert-loading global-alert">{{t "Processing your application"}}</small>
|
||||
<small class="alert-error global-alert">{{t "There was an error sending the email"}}</small>
|
||||
</div>
|
||||
<small class="global-question">{{t "Don’t have an account yet?"}} <a href="{{@site.url}}/signup/">{{t "Sign up"}}</a></small>
|
||||
</form>
|
||||
<div class="alert-success">
|
||||
<h2 class="custom-alert-title">{{t "Great!"}}</h2>
|
||||
<p>{{t "Please check your inbox and click the link to complete signin."}}</p>
|
||||
<a href="{{@site.url}}" class="global-button">{{t "Back to homepage"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/post}}
|
35
custom-sign-up.hbs
Normal file
@ -0,0 +1,35 @@
|
||||
{{!< default-custom}}
|
||||
{{#post}}
|
||||
<div class="custom-wrap{{>partial_mode}}">
|
||||
{{#if feature_image}}
|
||||
<div class="custom-image global-bg-image" style="background-image: url({{{img_url feature_image size="l" format="webp"}}})"></div>
|
||||
{{/if}}
|
||||
<div class="custom-container">
|
||||
<div class="custom-logo-wrap">
|
||||
<div class="custom-logo">
|
||||
{{>logo}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="custom-content">
|
||||
<form data-members-form="signup" data-members-autoredirect="false">
|
||||
<h1 class="custom-title global-title">{{title}}</h1>
|
||||
{{#if @site.portal_name}}
|
||||
<input data-members-name type="text" placeholder="{{t "Your name"}}" aria-label="{{t "Your name"}}" required>
|
||||
{{/if}}
|
||||
<input data-members-email type="email" placeholder="{{t "Your email address"}}" aria-label="{{t "Your email address"}}" required>
|
||||
<button class="global-button" type="submit">{{t "Continue"}}</button>
|
||||
<div>
|
||||
<small class="alert-loading global-alert">{{t "Processing your application"}}</small>
|
||||
<small class="alert-error global-alert">{{t "There was an error sending the email"}}</small>
|
||||
</div>
|
||||
<small class="global-question">{{t "Already have an account?"}} <a href="{{@site.url}}/signin/">{{t "Sign in"}}</a></small>
|
||||
</form>
|
||||
<div class="alert-success">
|
||||
<h2 class="custom-alert-title">{{t "Great!"}}</h2>
|
||||
<p>{{t "Please check your inbox and click the link to confirm your signup."}}</p>
|
||||
<a href="{{@site.url}}" class="global-button">{{t "Back to homepage"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/post}}
|
34
custom-subscribe.hbs
Normal file
@ -0,0 +1,34 @@
|
||||
{{!< default-custom}}
|
||||
{{#post}}
|
||||
<div class="custom-wrap{{>partial_mode}}">
|
||||
{{#if feature_image}}
|
||||
<div class="custom-image global-bg-image" style="background-image: url({{{img_url feature_image size="l" format="webp"}}})"></div>
|
||||
{{/if}}
|
||||
<div class="custom-container">
|
||||
<div class="custom-logo-wrap">
|
||||
<div class="custom-logo">
|
||||
{{>logo}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="custom-content">
|
||||
<form data-members-form="subscribe" data-members-autoredirect="false">
|
||||
<h1 class="custom-title global-title">{{title}}</h1>
|
||||
{{#if @site.portal_name}}
|
||||
<input data-members-name type="text" placeholder="{{t "Your name"}}" aria-label="{{t "Your name"}}" required>
|
||||
{{/if}}
|
||||
<input data-members-email type="email" placeholder="{{t "Your email address"}}" aria-label="{{t "Your email address"}}" required>
|
||||
<button class="global-button" type="submit">{{t "Subscribe"}}</button>
|
||||
<div>
|
||||
<small class="alert-loading global-alert">{{t "Processing your application"}}</small>
|
||||
<small class="alert-error global-alert">{{t "There was an error sending the email"}}</small>
|
||||
</div>
|
||||
</form>
|
||||
<div class="alert-success">
|
||||
<h2 class="custom-alert-title">{{t "Great!"}}</h2>
|
||||
<p>{{t "Please check your inbox and click the link to confirm your subscription."}}</p>
|
||||
<a href="{{@site.url}}" class="global-button">{{t "Back to homepage"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/post}}
|
43
custom-tags.hbs
Normal file
@ -0,0 +1,43 @@
|
||||
{{!< default}}
|
||||
{{#post}}
|
||||
<div class="archive-section{{>partial_mode}}">
|
||||
<h1 class="global-title">{{title}}</h1>
|
||||
{{#if custom_excerpt}}
|
||||
<p class="archive-excerpt global-excerpt">{{custom_excerpt}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="custom-archive loop-section global-padding">
|
||||
<div class="global-subtitle">
|
||||
<small class="global-subtitle-title">
|
||||
{{{t "Explore our {start-bold}tags{end-bold}" start-bold="<span>" end-bold="</span>"}}}
|
||||
</small>
|
||||
</div>
|
||||
{{#get "tags" limit="all" filter="visibility:public" include="count.posts" order="count.posts desc" as |tags|}}
|
||||
{{#if tags}}
|
||||
<div class="loop-wrap is-tags">
|
||||
{{#foreach tags}}
|
||||
{{#if count.posts}}
|
||||
<div class="item is-loop">
|
||||
{{#if feature_image}}
|
||||
<div class="item-image is-landscape global-image global-image-orientation global-radius">
|
||||
<a href="{{url}}" class="global-link" aria-label="{{name}}"></a>
|
||||
{{>images/archive_image archive_image=feature_image}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="item-content">
|
||||
<h2 class="item-title"><a href="{{url}}">{{name}}</a></h2>
|
||||
<small>{{plural count.posts empty=(t "No posts") singular=(t "1 post") plural=(t "% posts")}}</small>
|
||||
{{#if description}}
|
||||
<p class="item-excerpt">
|
||||
{{description}}
|
||||
</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/get}}
|
||||
</div>
|
||||
{{/post}}
|
21
default-custom.hbs
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{@site.locale}}"{{#match @custom.color_scheme "Dark"}} class="dark-mode"{{else match @custom.color_scheme "Auto: Light/Dark"}} class="auto-dark-mode"{{else match @custom.color_scheme "Partial Dark"}} class="partial-dark-mode"{{else match @custom.color_scheme "Auto: Partial Dark/Dark"}} class="auto-partial-dark-mode"{{/match}}>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>{{@site.title}} — {{meta_title}}</title>
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{{>services/google_fonts}}
|
||||
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}">
|
||||
{{{block "fonts_css"}}}
|
||||
{{ghost_head}}
|
||||
{{#if @custom.global_background_color_in_hex_string}}
|
||||
<style>:root {--ghost-bg-color: {{@custom.global_background_color_in_hex_string}};}</style>
|
||||
{{/if}}
|
||||
</head>
|
||||
<body class="{{body_class}} custom-page{{#if @custom.accent_color_buttons}} global-accent-color-buttons{{/if}}">
|
||||
{{{body}}}
|
||||
{{ghost_foot}}
|
||||
</body>
|
||||
</html>
|
39
default.hbs
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{@site.locale}}"{{#match @custom.color_scheme "Dark"}} class="dark-mode"{{else match @custom.color_scheme "Auto: Light/Dark"}} class="auto-dark-mode"{{else match @custom.color_scheme "Partial Dark"}} class="partial-dark-mode"{{else match @custom.color_scheme "Auto: Partial Dark/Dark"}} class="auto-partial-dark-mode"{{/match}}>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>{{meta_title page=(t "meta-page")}}</title>
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{{>services/google_fonts}}
|
||||
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}">
|
||||
{{{block "fonts_css"}}}
|
||||
{{ghost_head}}
|
||||
{{#if @custom.global_background_color_in_hex_string}}
|
||||
<style>:root {--ghost-bg-color: {{@custom.global_background_color_in_hex_string}};}</style>
|
||||
{{/if}}
|
||||
</head>
|
||||
<body class="{{body_class}}{{#if @custom.accent_color_buttons}} global-accent-color-buttons{{/if}}">
|
||||
<div class="global-wrap">
|
||||
<div class="global-content">
|
||||
{{>header}}
|
||||
<main class="global-main">
|
||||
{{{body}}}
|
||||
</main>
|
||||
{{>footer}}
|
||||
</div>
|
||||
</div>
|
||||
{{>members/notifications}}
|
||||
{{>search is_search_core=true}}
|
||||
<script src="{{asset "js/global.js"}}"></script>
|
||||
{{#if pagination.pages}}
|
||||
<script src="{{asset "js/index.js"}}"></script>
|
||||
{{/if}}
|
||||
{{#is "post,page"}}
|
||||
<script src="{{asset "js/post.js"}}"></script>
|
||||
{{/is}}
|
||||
{{{block "script_js"}}}
|
||||
{{ghost_foot}}
|
||||
</body>
|
||||
</html>
|
15
error.hbs
Normal file
@ -0,0 +1,15 @@
|
||||
{{!< default}}
|
||||
<div class="custom-error custom-wrap{{>partial_mode}}">
|
||||
<div class="custom-container">
|
||||
<div class="custom-error-content custom-content">
|
||||
<h1>{{statusCode}}</h1>
|
||||
<p class="global-excerpt">{{message}}</p>
|
||||
<a href="{{@site.url}}" class="global-button">{{t "Back to homepage"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{#get "posts" limit="4" filter="feature_image:-null" include="authors,tags" as |special_posts|}}
|
||||
{{#if special_posts}}
|
||||
{{>loop is_error=true}}
|
||||
{{/if}}
|
||||
{{/get}}
|
5
index.hbs
Normal file
@ -0,0 +1,5 @@
|
||||
{{!< default}}
|
||||
{{>hero}}
|
||||
{{>loop}}
|
||||
{{pagination}}
|
||||
{{>sections}}
|
111
locales/en.json
Normal file
@ -0,0 +1,111 @@
|
||||
{
|
||||
"Column 1": "Links",
|
||||
"Column 2": "Links",
|
||||
"Column 3": "Links",
|
||||
"Social": "Social",
|
||||
"Back to homepage": "Back to homepage",
|
||||
"{start-bold}Hey, we’re {site-title}.{end-bold} See our thoughts, stories and ideas.": "{start-bold}Hey, we’re {site-title}.{end-bold} See our thoughts, stories and ideas.",
|
||||
"Get started with our {start-bold}best stories{end-bold}": "Get started with our {start-bold}best stories{end-bold}",
|
||||
"See what we’ve {break}{start-bold}written lately{end-bold}": "See what we’ve {break}{start-bold}written lately{end-bold}",
|
||||
"Become a subscriber": "Become a subscriber",
|
||||
"Meet our author": "Meet our author",
|
||||
"Meet our authors": "Meet our authors",
|
||||
"Meet our top authors": "Meet our top authors",
|
||||
"{start-bold}Recommended{end-bold}": "{start-bold}Recommended{end-bold}",
|
||||
"Explore our {start-bold}tags{end-bold}": "Explore our {start-bold}tags{end-bold}",
|
||||
"Meet our {start-bold}authors{end-bold}": "Meet our {start-bold}authors{end-bold}",
|
||||
"from": "from",
|
||||
"No posts": "No posts",
|
||||
"1 post": "1 post",
|
||||
"% posts": "% posts",
|
||||
"Website": "Website",
|
||||
"and": " and ",
|
||||
"1 minute read": "1 minute read",
|
||||
"% minutes read": "% minutes read",
|
||||
"Share this post": "Share this post",
|
||||
"The link has been copied!": "The link has been copied!",
|
||||
"Newer post": "Newer post",
|
||||
"Older post": "Older post",
|
||||
"Member discussion": "Member discussion",
|
||||
"0 comments": "0 comments",
|
||||
"comment": "comment",
|
||||
"comments": "comments",
|
||||
"Load more": "Load more",
|
||||
"You might {start-bold}also like{end-bold}": "You might {start-bold}also like{end-bold}",
|
||||
"Search": "Search",
|
||||
"Please enter at least 3 characters": "Please enter at least 3 characters",
|
||||
"Results for your search": "Results for your search",
|
||||
"This post is for subscribers only": "This post is for subscribers only",
|
||||
"This post is for paying subscribers only": "This post is for paying subscribers only",
|
||||
"No tiers": "No tiers",
|
||||
"This post is for subscribers with the tier:": "This post is for subscribers with the tier:",
|
||||
"This post is for subscribers with any of the tiers:": "This post is for subscribers with any of the tiers:",
|
||||
"or": " or ",
|
||||
"Upgrade your account to get access to the post.": "Upgrade your account to get access to the post.",
|
||||
"Sign up now and upgrade your account to get access to the post.": "Sign up now and upgrade your account to get access to the post.",
|
||||
"Sign up now to read the post and get access to the full library of posts for subscribers only.": "Sign up now to read the post and get access to the full library of posts for subscribers only.",
|
||||
"Upgrade your account to read the post and get access to the full library of posts for paying subscribers only.": "Upgrade your account to read the post and get access to the full library of posts for paying subscribers only.",
|
||||
"Sign up now and upgrade your account to read the post and get access to the full library of posts for paying subscribers only.": "Sign up now and upgrade your account to read the post and get access to the full library of posts for paying subscribers only.",
|
||||
"Sign up now": "Sign up now",
|
||||
"Sign up for free": "Sign up for free",
|
||||
"Already have an account?": "Already have an account?",
|
||||
"Don’t have an account yet?": "Don’t have an account yet?",
|
||||
"Account details": "Account details",
|
||||
"Account settings": "Account settings",
|
||||
"Monthly": "Monthly",
|
||||
"Yearly": "Yearly",
|
||||
"month": "month",
|
||||
"year": "year",
|
||||
"$": "$",
|
||||
"Start {trial}-day free trial": "Start {trial}-day free trial",
|
||||
"Email address": "Email address",
|
||||
"Your account": "Your account",
|
||||
"Your plan": "Your plan",
|
||||
"Your name": "Your name",
|
||||
"Your email address": "Your email address",
|
||||
"Your message": "Your message",
|
||||
"Send message": "Send message",
|
||||
"Card": "Card",
|
||||
"Free": "Free",
|
||||
"Expires": "Expires",
|
||||
"Next bill date": "Next bill date",
|
||||
"Edit billing info": "Edit billing info",
|
||||
"Subscribe": "Subscribe",
|
||||
"Join": "Join",
|
||||
"Sign in": "Sign in",
|
||||
"Sign up": "Sign up",
|
||||
"Sign out": "Sign out",
|
||||
"Account": "Account",
|
||||
"See plans": "See plans",
|
||||
"See {start-bold}pricing plans{end-bold}": "See {start-bold}pricing plans{end-bold}",
|
||||
"Check out the {start-bold}latest posts{end-bold}": "Check out the {start-bold}latest posts{end-bold}",
|
||||
"The latest posts {start-bold}only for subscribers{end-bold}": "The latest posts {start-bold}only for subscribers{end-bold}",
|
||||
"Cancel subscription": "Cancel subscription",
|
||||
"Continue subscription": "Continue subscription",
|
||||
"FAQs": "FAQs",
|
||||
"Continue": "Continue",
|
||||
"Send login link": "Send login link",
|
||||
"You’ve successfully subscribed to {site-title}": "You’ve successfully subscribed to {site-title}",
|
||||
"Welcome back! You’ve successfully signed in.": "Welcome back! You’ve successfully signed in.",
|
||||
"Success! Your email is updated.": "Success! Your email is updated.",
|
||||
"Great!": "Great!",
|
||||
"Great! You’ve successfully signed up.": "Great! You’ve successfully signed up.",
|
||||
"Your link has expired": "Your link has expired",
|
||||
"Processing your application": "Processing your application",
|
||||
"Please check your inbox and click the link to confirm your subscription.": "Please check your inbox and click the link to confirm your subscription.",
|
||||
"Please check your inbox and click the link to complete signin.": "Please check your inbox and click the link to complete signin.",
|
||||
"Please check your inbox and click the link to confirm your signup.": "Please check your inbox and click the link to confirm your signup.",
|
||||
"There was an error sending the email": "There was an error sending the email",
|
||||
"Success! Check your email for magic link to sign-in.": "Success! Check your email for magic link to sign-in.",
|
||||
"Success! You now have access to additional content.": "Success! You now have access to additional content.",
|
||||
"Get the email newsletter and unlock access to members-only content and updates": "Get the email newsletter and unlock access to members-only content and updates",
|
||||
"Unlock full access to {site-title} and see the entire library of subscribers-only content & updates": "Unlock full access to {site-title} and see the entire library of subscribers-only content & updates",
|
||||
"You’ve an active account with access to posts for subscribers.": "You’ve an active account with access to posts for subscribers.",
|
||||
"Nice, you’re a paying subscriber! You’ve an active account with access to all posts.": "Nice, you’re a paying subscriber! You’ve an active account with access to all posts.",
|
||||
"Currently, you’re not a paying subscriber. You’ve an active account with access to posts for subscribers only.": "Currently, you’re not a paying subscriber. You’ve an active account with access to posts for subscribers only.",
|
||||
"Your subscription will expire on": "Your subscription will expire on",
|
||||
"If you change your mind in the meantime you can turn auto-renew back on to continue your subscription.": "If you change your mind in the meantime you can turn auto-renew back on to continue your subscription.",
|
||||
"Subscribe to {start-bold}new posts{end-bold}": "Subscribe to {start-bold}new posts{end-bold}",
|
||||
"meta-page": " (Page %)",
|
||||
"Published with {ghost-link} and {theme-name}.": "Published with {ghost-link} and {theme-name}."
|
||||
}
|
116
package.json
Normal file
@ -0,0 +1,116 @@
|
||||
{
|
||||
"name": "basho",
|
||||
"demo": "https://basho.fueko.net",
|
||||
"version": "2.6.3",
|
||||
"docs": "https://fueko.net/docs/basho/",
|
||||
"author": {
|
||||
"name": "fueko",
|
||||
"email": "hello@fueko.net",
|
||||
"url": "https://fueko.net"
|
||||
},
|
||||
"keywords": [
|
||||
"ghost-theme"
|
||||
],
|
||||
"config": {
|
||||
"posts_per_page": 6,
|
||||
"card_assets": true,
|
||||
"image_sizes": {
|
||||
"s": {
|
||||
"width": 300
|
||||
},
|
||||
"m": {
|
||||
"width": 600
|
||||
},
|
||||
"l": {
|
||||
"width": 1200
|
||||
},
|
||||
"xl": {
|
||||
"width": 2000
|
||||
}
|
||||
},
|
||||
"custom": {
|
||||
"color_scheme": {
|
||||
"type": "select",
|
||||
"options": ["Light", "Dark", "Partial Dark", "Auto: Light/Dark", "Auto: Partial Dark/Dark" ],
|
||||
"default": "Light"
|
||||
},
|
||||
"logo_for_dark_color_scheme": {
|
||||
"type": "image",
|
||||
"visibility": "color_scheme:[Dark,'Partial Dark','Auto: Light/Dark','Auto: Partial Dark/Dark']"
|
||||
},
|
||||
"global_background_color_in_hex_string": {
|
||||
"type": "text"
|
||||
},
|
||||
"fonts": {
|
||||
"type": "select",
|
||||
"options": ["System fonts", "Archivo + System fonts", "Bona Nova + Inter", "EB Garamond + Inter", "Inter", "Lato", "Lora + System fonts", "Nunito", "Oswald + Roboto", "Playfair + System fonts", "Poppins + Inter", "Raleway + System fonts", "Roboto", "Space Grotesk + Inter", "Sora + Inter", "Syne + Inter", "Work Sans + Inter"],
|
||||
"default": "Inter"
|
||||
},
|
||||
"show_author": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Set to false if you don’t want to display the author in the feed or on the post page"
|
||||
},
|
||||
"accent_color_buttons": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"feed_images_orientation": {
|
||||
"type": "select",
|
||||
"options": ["Portrait", "Landscape", "Square", "Natural"],
|
||||
"default": "Portrait"
|
||||
},
|
||||
"special_section_images_orientation": {
|
||||
"type": "select",
|
||||
"options": ["Portrait", "Landscape", "Square", "Natural"],
|
||||
"default": "Portrait"
|
||||
},
|
||||
"content_api_key_for_search": {
|
||||
"type": "text"
|
||||
},
|
||||
"contact_form_endpoint": {
|
||||
"type": "text"
|
||||
},
|
||||
"footer_copyright": {
|
||||
"type": "text"
|
||||
},
|
||||
"hero_title_size_and_subscription_form_or_button": {
|
||||
"type": "select",
|
||||
"options": ["Large", "Medium", "Small", "Large + Subscription form", "Medium + Subscription form", "Small + Subscription form", "Large + Subscription button", "Medium + Subscription button", "Small + Subscription button"],
|
||||
"default": "Large",
|
||||
"group": "homepage"
|
||||
},
|
||||
"hero_title_text": {
|
||||
"type": "text",
|
||||
"group": "homepage"
|
||||
},
|
||||
"slider_size": {
|
||||
"type": "select",
|
||||
"options": ["Large", "Small"],
|
||||
"default": "Small",
|
||||
"group": "homepage"
|
||||
},
|
||||
"slider_images_orientation": {
|
||||
"type": "select",
|
||||
"options": ["Portrait", "Landscape", "Square", "Natural"],
|
||||
"default": "Portrait",
|
||||
"group": "homepage"
|
||||
},
|
||||
"tags_for_special_section": {
|
||||
"type": "text",
|
||||
"group": "homepage",
|
||||
"description": "Provide the tag (or tags) slug you want to display in the section below the 'Load more' button"
|
||||
},
|
||||
"feature_image_orientation": {
|
||||
"type": "select",
|
||||
"options": ["Portrait", "Landscape", "Square", "Natural"],
|
||||
"default": "Portrait",
|
||||
"group": "post"
|
||||
},
|
||||
"disqus_shortname": {
|
||||
"type": "text",
|
||||
"group": "post"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
20
partials/featured.hbs
Normal file
@ -0,0 +1,20 @@
|
||||
{{#get "posts" limit="15" filter="featured:true+feature_image:-null" include="authors,tags" as |slider|}}
|
||||
{{#if slider}}
|
||||
<div class="featured-section">
|
||||
<div class="global-padding">
|
||||
<div class="featured-subtitle global-subtitle">
|
||||
<small class="global-subtitle-title">{{{t "Get started with our {start-bold}best stories{end-bold}" start-bold="<span>" end-bold="</span>"}}}</small>
|
||||
<div class="featured-navigation">
|
||||
<button class="featured-btn-previous" aria-label="Previous">{{>icons/site/arrow_left}}</button>
|
||||
<button class="featured-btn-next" aria-label="Next">{{>icons/site/arrow_right}}</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="featured-wrap">
|
||||
{{#foreach slider}}
|
||||
{{>item is_featured=true show_excerpt=true}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/get}}
|
40
partials/footer.hbs
Normal file
@ -0,0 +1,40 @@
|
||||
<footer class="footer-section global-footer{{>partial_mode}}">
|
||||
<div class="footer-wrap global-padding">
|
||||
{{>members/subscribe_form}}
|
||||
<div class="footer-container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-logo">
|
||||
{{>logo}}
|
||||
</div>
|
||||
{{#if @site.description}}
|
||||
<p class="footer-description">{{@site.description}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="footer-nav">
|
||||
<div class="footer-nav-column is-social">
|
||||
<small>{{t "Social"}}</small>
|
||||
<ul>
|
||||
{{#if @site.facebook}}
|
||||
<li><a href="{{facebook_url}}">{{>icons/social/facebook}}Facebook</a></li>
|
||||
{{/if}}
|
||||
{{#if @site.twitter}}
|
||||
<li><a href="{{twitter_url}}">{{>icons/social/x}}X</a></li>
|
||||
{{/if}}
|
||||
{{>footer_icons}}
|
||||
</ul>
|
||||
</div>
|
||||
{{#if @site.secondary_navigation}}
|
||||
{{navigation type="secondary"}}
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="footer-copyright">
|
||||
© {{date format="YYYY"}} <a href="{{@site.url}}">{{@site.title}}</a>.
|
||||
{{#if @custom.footer_copyright}}
|
||||
{{{@custom.footer_copyright}}}
|
||||
{{else}}
|
||||
{{{t "Published with {ghost-link} and {theme-name}." ghost-link="<a href=\"https://ghost.org\" target=\"_blank\" rel=\"noopener noreferrer\">Ghost</a>" theme-name="<a href=\"https://fueko.net\" target=\"_blank\" rel=\"noopener\">Basho</a>"}}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
391
partials/footer_icons.hbs
Normal file
@ -0,0 +1,391 @@
|
||||
{{! Detailed instructions can be found in the Documentation >> Activation >> Social accounts }}
|
||||
|
||||
{{! RSS }}
|
||||
{{!-- <li><a href="/rss">{{>icons/site/rss}}RSS</a></li> --}}
|
||||
|
||||
{{! Adobe Creative Cloud }}
|
||||
{{!-- <li><a href="#">{{>icons/social/adobecreativecloud}}Adobe Creative Cloud</a></li> --}}
|
||||
{{! Airbnb }}
|
||||
{{!-- <li><a href="#">{{>icons/social/airbnb}}Airbnb</a></li> --}}
|
||||
{{! Amazon }}
|
||||
{{!-- <li><a href="#">{{>icons/social/amazon}}Amazon</a></li> --}}
|
||||
{{! Android }}
|
||||
{{!-- <li><a href="#">{{>icons/social/android}}Android</a></li> --}}
|
||||
{{! AngelList }}
|
||||
{{!-- <li><a href="#">{{>icons/social/angellist}}AngelList</a></li> --}}
|
||||
{{! Angular }}
|
||||
{{!-- <li><a href="#">{{>icons/social/angular}}Angular</a></li> --}}
|
||||
{{! Apple }}
|
||||
{{!-- <li><a href="#">{{>icons/social/apple}}Apple</a></li> --}}
|
||||
{{! Apple Music }}
|
||||
{{!-- <li><a href="#">{{>icons/social/applemusic}}Apple Music</a></li> --}}
|
||||
{{! Apple Pay }}
|
||||
{{!-- <li><a href="#">{{>icons/social/applepay}}Apple Pay</a></li> --}}
|
||||
{{! Asana }}
|
||||
{{!-- <li><a href="#">{{>icons/social/asana}}Asana</a></li> --}}
|
||||
{{! Atlassian }}
|
||||
{{!-- <li><a href="#">{{>icons/social/atlassian}}Atlassian</a></li> --}}
|
||||
{{! Baidu }}
|
||||
{{!-- <li><a href="#">{{>icons/social/baidu}}Baidu</a></li> --}}
|
||||
{{! BandCamp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bandcamp}}BandCamp</a></li> --}}
|
||||
{{! Basecamp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/basecamp}}Basecamp</a></li> --}}
|
||||
{{! Behance }}
|
||||
{{!-- <li><a href="#">{{>icons/social/behance}}Behance</a></li> --}}
|
||||
{{! Big Cartel }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bigcartel}}Big Cartel</a></li> --}}
|
||||
{{! Bitcoin }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bitcoin}}Bitcoin</a></li> --}}
|
||||
{{! Bitbucket }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bitbucket}}Bitbucket</a></li> --}}
|
||||
{{! Bitly }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bitly}}Bitly</a></li> --}}
|
||||
{{! Blogger }}
|
||||
{{!-- <li><a href="#">{{>icons/social/blogger}}Blogger</a></li> --}}
|
||||
{{! Bluesky }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bluesky}}Bluesky</a></li> --}}
|
||||
{{! Bower }}
|
||||
{{!-- <li><a href="#">{{>icons/social/bower}}Bower</a></li> --}}
|
||||
{{! Buffer }}
|
||||
{{!-- <li><a href="#">{{>icons/social/buffer}}Buffer</a></li> --}}
|
||||
{{! Buy me a coffee }}
|
||||
{{!-- <li><a href="#">{{>icons/social/buymeacoffee}}Buy me a coffee</a></li> --}}
|
||||
{{! BuzzFeed }}
|
||||
{{!-- <li><a href="#">{{>icons/social/buzzfeed}}BuzzFeed</a></li> --}}
|
||||
{{! CashApp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/cashapp}}CashApp</a></li> --}}
|
||||
{{! Castro }}
|
||||
{{!-- <li><a href="#">{{>icons/social/castro}}Castro</a></li> --}}
|
||||
{{! Codecov }}
|
||||
{{!-- <li><a href="#">{{>icons/social/codecov}}Codecov</a></li> --}}
|
||||
{{! CodeIgniter }}
|
||||
{{!-- <li><a href="#">{{>icons/social/codeigniter}}CodeIgniter</a></li> --}}
|
||||
{{! CodePen }}
|
||||
{{!-- <li><a href="#">{{>icons/social/codepen}}CodePen</a></li> --}}
|
||||
{{! Codewars }}
|
||||
{{!-- <li><a href="#">{{>icons/social/codewars}}Codewars</a></li> --}}
|
||||
{{! Dailymotion }}
|
||||
{{!-- <li><a href="#">{{>icons/social/dailymotion}}Dailymotion</a></li> --}}
|
||||
{{! Debian }}
|
||||
{{!-- <li><a href="#">{{>icons/social/debian}}Debian</a></li> --}}
|
||||
{{! Deezer }}
|
||||
{{!-- <li><a href="#">{{>icons/social/deezer}}Deezer</a></li> --}}
|
||||
{{! Delicious }}
|
||||
{{!-- <li><a href="#">{{>icons/social/delicious}}Delicious</a></li> --}}
|
||||
{{! DeviantArt }}
|
||||
{{!-- <li><a href="#">{{>icons/social/deviantart}}DeviantArt</a></li> --}}
|
||||
{{! Diaspora }}
|
||||
{{!-- <li><a href="#">{{>icons/social/diaspora}}Diaspora</a></li> --}}
|
||||
{{! Digg }}
|
||||
{{!-- <li><a href="#">{{>icons/social/digg}}Digg</a></li> --}}
|
||||
{{! Discord }}
|
||||
{{!-- <li><a href="#">{{>icons/social/discord}}Discord</a></li> --}}
|
||||
{{! Discourse }}
|
||||
{{!-- <li><a href="#">{{>icons/social/discourse}}Discourse</a></li> --}}
|
||||
{{! Disqus }}
|
||||
{{!-- <li><a href="#">{{>icons/social/disqus}}Disqus</a></li> --}}
|
||||
{{! Django }}
|
||||
{{!-- <li><a href="#">{{>icons/social/django}}Django</a></li> --}}
|
||||
{{! Dribbble }}
|
||||
{{!-- <li><a href="#">{{>icons/social/dribbble}}Dribbble</a></li> --}}
|
||||
{{! Dropbox }}
|
||||
{{!-- <li><a href="#">{{>icons/social/dropbox}}Dropbox</a></li> --}}
|
||||
{{! DTube }}
|
||||
{{!-- <li><a href="#">{{>icons/social/dtube}}DTube</a></li> --}}
|
||||
{{! Envato }}
|
||||
{{!-- <li><a href="#">{{>icons/social/envato}}Envato</a></li> --}}
|
||||
{{! Etsy }}
|
||||
{{!-- <li><a href="#">{{>icons/social/etsy}}Etsy</a></li> --}}
|
||||
{{! Evernote }}
|
||||
{{!-- <li><a href="#">{{>icons/social/evernote}}Evernote</a></li> --}}
|
||||
{{! Everplaces }}
|
||||
{{!-- <li><a href="#">{{>icons/social/everplaces}}Everplaces</a></li> --}}
|
||||
{{! Feedly }}
|
||||
{{!-- <li><a href="#">{{>icons/social/feedly}}Feedly</a></li> --}}
|
||||
{{! Figma }}
|
||||
{{!-- <li><a href="#">{{>icons/social/figma}}Figma</a></li> --}}
|
||||
{{! Flickr }}
|
||||
{{!-- <li><a href="#">{{>icons/social/flickr}}Flickr</a></li> --}}
|
||||
{{! Flipboard }}
|
||||
{{!-- <li><a href="#">{{>icons/social/flipboard}}Flipboard</a></li> --}}
|
||||
{{! Framer }}
|
||||
{{!-- <li><a href="#">{{>icons/social/framer}}Framer</a></li> --}}
|
||||
{{! Foursquare }}
|
||||
{{!-- <li><a href="#">{{>icons/social/foursquare}}Foursquare</a></li> --}}
|
||||
{{! Gatsby }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gatsby}}Gatsby</a></li> --}}
|
||||
{{! Ghost }}
|
||||
{{!-- <li><a href="#">{{>icons/social/ghost}}Ghost</a></li> --}}
|
||||
{{! Git }}
|
||||
{{!-- <li><a href="#">{{>icons/social/git}}Git</a></li> --}}
|
||||
{{! GitHub }}
|
||||
{{!-- <li><a href="#">{{>icons/social/github}}GitHub</a></li> --}}
|
||||
{{! GitLab }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gitlab}}GitLab</a></li> --}}
|
||||
{{! Gmail }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gmail}}Gmail</a></li> --}}
|
||||
{{! GNU Social }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gnusocial}}GNU Social</a></li> --}}
|
||||
{{! GoldenLine }}
|
||||
{{!-- <li><a href="#">{{>icons/social/goldenline}}GoldenLine</a></li> --}}
|
||||
{{! Google Allo }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googleallo}}Google Allo</a></li> --}}
|
||||
{{! Google Analytics }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googleanalytics}}Google Analytics</a></li> --}}
|
||||
{{! Google Drive }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googledrive}}Google Drive</a></li> --}}
|
||||
{{! Google Pay }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googlepay}}Google Pay</a></li> --}}
|
||||
{{! Google Play }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googleplay}}Google Play</a></li> --}}
|
||||
{{! Google Plus }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googleplus}}Google Plus</a></li> --}}
|
||||
{{! Google Podcasts }}
|
||||
{{!-- <li><a href="#">{{>icons/social/googlepodcasts}}Google Podcasts</a></li> --}}
|
||||
{{! Gravatar }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gravatar}}Gravatar</a></li> --}}
|
||||
{{! Groupon }}
|
||||
{{!-- <li><a href="#">{{>icons/social/groupon}}Groupon</a></li> --}}
|
||||
{{! Gulp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gulp}}Gulp</a></li> --}}
|
||||
{{! Gumroad }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gumroad}}Gumroad</a></li> --}}
|
||||
{{! Gumtree }}
|
||||
{{!-- <li><a href="#">{{>icons/social/gumtree}}Gumtree</a></li> --}}
|
||||
{{! HackerRank }}
|
||||
{{!-- <li><a href="#">{{>icons/social/hackerrank}}HackerRank</a></li> --}}
|
||||
{{! Heroku }}
|
||||
{{!-- <li><a href="#">{{>icons/social/heroku}}Heroku</a></li> --}}
|
||||
{{! Hipchat }}
|
||||
{{!-- <li><a href="#">{{>icons/social/hipchat}}Hipchat</a></li> --}}
|
||||
{{! Hootsuite }}
|
||||
{{!-- <li><a href="#">{{>icons/social/hootsuite}}Hootsuite</a></li> --}}
|
||||
{{! Houzz }}
|
||||
{{!-- <li><a href="#">{{>icons/social/houzz}}Houzz</a></li> --}}
|
||||
{{! Hulu }}
|
||||
{{!-- <li><a href="#">{{>icons/social/hulu}}Hulu</a></li> --}}
|
||||
{{! Humble Bundle }}
|
||||
{{!-- <li><a href="#">{{>icons/social/humblebundle}}Humble Bundle</a></li> --}}
|
||||
{{! ICQ }}
|
||||
{{!-- <li><a href="#">{{>icons/social/icq}}ICQ</a></li> --}}
|
||||
{{! iFixit }}
|
||||
{{!-- <li><a href="#">{{>icons/social/ifixit}}iFixit</a></li> --}}
|
||||
{{! IMDb }}
|
||||
{{!-- <li><a href="#">{{>icons/social/imdb}}IMDb</a></li> --}}
|
||||
{{! Instagram }}
|
||||
{{!-- <li><a href="#">{{>icons/social/instagram}}Instagram</a></li> --}}
|
||||
{{! Instapaper }}
|
||||
{{!-- <li><a href="#">{{>icons/social/instapaper}}Instapaper</a></li> --}}
|
||||
{{! Intercom }}
|
||||
{{!-- <li><a href="#">{{>icons/social/intercom}}Intercom</a></li> --}}
|
||||
{{! InVision }}
|
||||
{{!-- <li><a href="#">{{>icons/social/invision}}InVision</a></li> --}}
|
||||
{{! JavaScript }}
|
||||
{{!-- <li><a href="#">{{>icons/social/javascript}}JavaScript</a></li> --}}
|
||||
{{! Jira }}
|
||||
{{!-- <li><a href="#">{{>icons/social/jira}}Jira</a></li> --}}
|
||||
{{! Joomla }}
|
||||
{{!-- <li><a href="#">{{>icons/social/joomla}}Joomla</a></li> --}}
|
||||
{{! jQuery }}
|
||||
{{!-- <li><a href="#">{{>icons/social/jquery}}jQuery</a></li> --}}
|
||||
{{! JSFiddle }}
|
||||
{{!-- <li><a href="#">{{>icons/social/jsfiddle}}JSFiddle</a></li> --}}
|
||||
{{! JustGiving }}
|
||||
{{!-- <li><a href="#">{{>icons/social/justgiving}}JustGiving</a></li> --}}
|
||||
{{! Khan Academy }}
|
||||
{{!-- <li><a href="#">{{>icons/social/khanacademy}}Khan Academy</a></li> --}}
|
||||
{{! Kickstarter }}
|
||||
{{!-- <li><a href="#">{{>icons/social/kickstarter}}Kickstarter</a></li> --}}
|
||||
{{! Kik }}
|
||||
{{!-- <li><a href="#">{{>icons/social/kik}}Kik</a></li> --}}
|
||||
{{! Ko-fi }}
|
||||
{{!-- <li><a href="#">{{>icons/social/kofi}}Ko-fi</a></li> --}}
|
||||
{{! Last.fm }}
|
||||
{{!-- <li><a href="#">{{>icons/social/lastfm}}Last.fm</a></li> --}}
|
||||
{{! Line }}
|
||||
{{!-- <li><a href="#">{{>icons/social/line}}Line</a></li> --}}
|
||||
{{! Linkedin }}
|
||||
{{!-- <li><a href="#">{{>icons/social/linkedin}}Linkedin</a></li> --}}
|
||||
{{! Livestream }}
|
||||
{{!-- <li><a href="#">{{>icons/social/livestream}}Livestream</a></li> --}}
|
||||
{{! Mailchimp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/mailchimp}}Mailchimp</a></li> --}}
|
||||
{{! MakerBot }}
|
||||
{{!-- <li><a href="#">{{>icons/social/makerbot}}MakerBot</a></li> --}}
|
||||
{{! MasterCard }}
|
||||
{{!-- <li><a href="#">{{>icons/social/mastercard}}MasterCard</a></li> --}}
|
||||
{{! Mastodon }}
|
||||
{{!-- <li><a href="#">{{>icons/social/mastodon}}Mastodon</a></li> --}}
|
||||
{{! Medium }}
|
||||
{{!-- <li><a href="#">{{>icons/social/medium}}Medium</a></li> --}}
|
||||
{{! Meetup }}
|
||||
{{!-- <li><a href="#">{{>icons/social/meetup}}Meetup</a></li> --}}
|
||||
{{! Messenger }}
|
||||
{{!-- <li><a href="#">{{>icons/social/messenger}}Messenger</a></li> --}}
|
||||
{{! Micro.blog }}
|
||||
{{!-- <li><a href="#">{{>icons/social/microblog}}Micro.blog</a></li> --}}
|
||||
{{! .NET }}
|
||||
{{!-- <li><a href="#">{{>icons/social/net}}.NET</a></li> --}}
|
||||
{{! Netlify }}
|
||||
{{!-- <li><a href="#">{{>icons/social/netlify}}Netlify</a></li> --}}
|
||||
{{! Netflix }}
|
||||
{{!-- <li><a href="#">{{>icons/social/netflix}}Netflix</a></li> --}}
|
||||
{{! Nintendo Switch }}
|
||||
{{!-- <li><a href="#">{{>icons/social/nintendoswitch}}Nintendo Switch</a></li> --}}
|
||||
{{! Notion }}
|
||||
{{!-- <li><a href="#">{{>icons/social/notion}}Notion</a></li> --}}
|
||||
{{! npm }}
|
||||
{{!-- <li><a href="#">{{>icons/social/npm}}npm</a></li> --}}
|
||||
{{! NVIDIA }}
|
||||
{{!-- <li><a href="#">{{>icons/social/nvidia}}NVIDIA</a></li> --}}
|
||||
{{! Oculus }}
|
||||
{{!-- <li><a href="#">{{>icons/social/oculus}}Oculus</a></li> --}}
|
||||
{{! Odnoklassniki }}
|
||||
{{!-- <li><a href="#">{{>icons/social/odnoklassniki}}Odnoklassniki</a></li> --}}
|
||||
{{! Origin }}
|
||||
{{!-- <li><a href="#">{{>icons/social/origin}}Origin</a></li> --}}
|
||||
{{! Overcast }}
|
||||
{{!-- <li><a href="#">{{>icons/social/overcast}}Overcast</a></li> --}}
|
||||
{{! PayPal }}
|
||||
{{!-- <li><a href="#">{{>icons/social/paypal}}PayPal</a></li> --}}
|
||||
{{! Patreon }}
|
||||
{{!-- <li><a href="#">{{>icons/social/patreon}}Patreon</a></li> --}}
|
||||
{{! Periscope }}
|
||||
{{!-- <li><a href="#">{{>icons/social/periscope}}Periscope</a></li> --}}
|
||||
{{! Pinboard }}
|
||||
{{!-- <li><a href="#">{{>icons/social/pinboard}}Pinboard</a></li> --}}
|
||||
{{! Pingdom }}
|
||||
{{!-- <li><a href="#">{{>icons/social/pingdom}}Pingdom</a></li> --}}
|
||||
{{! Pinterest }}
|
||||
{{!-- <li><a href="#">{{>icons/social/pinterest}}Pinterest</a></li> --}}
|
||||
{{! Player.me }}
|
||||
{{!-- <li><a href="#">{{>icons/social/playerme}}Player.me</a></li> --}}
|
||||
{{! Plex }}
|
||||
{{!-- <li><a href="#">{{>icons/social/plex}}Plex</a></li> --}}
|
||||
{{! Pocket }}
|
||||
{{!-- <li><a href="#">{{>icons/social/pocket}}Pocket</a></li> --}}
|
||||
{{! Podcasts }}
|
||||
{{!-- <li><a href="#">{{>icons/social/podcasts}}Podcasts</a></li> --}}
|
||||
{{! ProcessWire }}
|
||||
{{!-- <li><a href="#">{{>icons/social/processwire}}ProcessWire</a></li> --}}
|
||||
{{! Product Hunt }}
|
||||
{{!-- <li><a href="#">{{>icons/social/producthunt}}Product Hunt</a></li> --}}
|
||||
{{! Proto.io }}
|
||||
{{!-- <li><a href="#">{{>icons/social/protoio}}Proto.io</a></li> --}}
|
||||
{{! Python }}
|
||||
{{!-- <li><a href="#">{{>icons/social/python}}Python</a></li> --}}
|
||||
{{! Quantopian }}
|
||||
{{!-- <li><a href="#">{{>icons/social/quantopian}}Quantopian</a></li> --}}
|
||||
{{! Quip }}
|
||||
{{!-- <li><a href="#">{{>icons/social/quip}}Quip</a></li> --}}
|
||||
{{! Quora }}
|
||||
{{!-- <li><a href="#">{{>icons/social/quora}}Quora</a></li> --}}
|
||||
{{! Raspberry Pi }}
|
||||
{{!-- <li><a href="#">{{>icons/social/raspberrypi}}Raspberry Pi</a></li> --}}
|
||||
{{! Riot }}
|
||||
{{!-- <li><a href="#">{{>icons/social/riot}}Riot</a></li> --}}
|
||||
{{! Runkeeper }}
|
||||
{{!-- <li><a href="#">{{>icons/social/runkeeper}}Runkeeper</a></li> --}}
|
||||
{{! Redbubble }}
|
||||
{{!-- <li><a href="#">{{>icons/social/redbubble}}Redbubble</a></li> --}}
|
||||
{{! Reddit }}
|
||||
{{!-- <li><a href="#">{{>icons/social/reddit}}Reddit</a></li> --}}
|
||||
{{! Sauce Labs }}
|
||||
{{!-- <li><a href="#">{{>icons/social/saucelabs}}Sauce Labs</a></li> --}}
|
||||
{{! Sellfy }}
|
||||
{{!-- <li><a href="#">{{>icons/social/sellfy}}Sellfy</a></li> --}}
|
||||
{{! Shopify }}
|
||||
{{!-- <li><a href="#">{{>icons/social/shopify}}Shopify</a></li> --}}
|
||||
{{! Skype }}
|
||||
{{!-- <li><a href="#">{{>icons/social/skype}}Skype</a></li> --}}
|
||||
{{! Slack }}
|
||||
{{!-- <li><a href="#">{{>icons/social/slack}}Slack</a></li> --}}
|
||||
{{! SlickPic }}
|
||||
{{!-- <li><a href="#">{{>icons/social/slickpic}}SlickPic</a></li> --}}
|
||||
{{! Smashing Magazine }}
|
||||
{{!-- <li><a href="#">{{>icons/social/smashingmagazine}}Smashing Magazine</a></li> --}}
|
||||
{{! Snapchat }}
|
||||
{{!-- <li><a href="#">{{>icons/social/snapchat}}Snapchat</a></li> --}}
|
||||
{{! Songkick }}
|
||||
{{!-- <li><a href="#">{{>icons/social/songkick}}Songkick</a></li> --}}
|
||||
{{! SoundCloud }}
|
||||
{{!-- <li><a href="#">{{>icons/social/soundcloud}}SoundCloud</a></li> --}}
|
||||
{{! SparkPost }}
|
||||
{{!-- <li><a href="#">{{>icons/social/sparkpost}}SparkPost</a></li> --}}
|
||||
{{! Spotify }}
|
||||
{{!-- <li><a href="#">{{>icons/social/spotify}}Spotify</a></li> --}}
|
||||
{{! Squarespace }}
|
||||
{{!-- <li><a href="#">{{>icons/social/squarespace}}Squarespace</a></li> --}}
|
||||
{{! Strava }}
|
||||
{{!-- <li><a href="#">{{>icons/social/strava}}Strava</a></li> --}}
|
||||
{{! Stack Overflow }}
|
||||
{{!-- <li><a href="#">{{>icons/social/stackoverflow}}Stack Overflow</a></li> --}}
|
||||
{{! Steam }}
|
||||
{{!-- <li><a href="#">{{>icons/social/steam}}Steam</a></li> --}}
|
||||
{{! Stripe }}
|
||||
{{!-- <li><a href="#">{{>icons/social/stripe}}Stripe</a></li> --}}
|
||||
{{! TED }}
|
||||
{{!-- <li><a href="#">{{>icons/social/ted}}TED</a></li> --}}
|
||||
{{! Tencent QQ }}
|
||||
{{!-- <li><a href="#">{{>icons/social/tencentqq}}Tencent QQ</a></li> --}}
|
||||
{{! Telegram }}
|
||||
{{!-- <li><a href="#">{{>icons/social/telegram}}Telegram</a></li> --}}
|
||||
{{! The Mighty }}
|
||||
{{!-- <li><a href="#">{{>icons/social/themighty}}The Mighty</a></li> --}}
|
||||
{{! Threads }}
|
||||
{{!-- <li><a href="#">{{>icons/social/threads}}Threads</a></li> --}}
|
||||
{{! TikTok }}
|
||||
{{!-- <li><a href="#">{{>icons/social/tiktok}}TikTok</a></li> --}}
|
||||
{{! Tinder }}
|
||||
{{!-- <li><a href="#">{{>icons/social/tinder}}Tinder</a></li> --}}
|
||||
{{! Trakt }}
|
||||
{{!-- <li><a href="#">{{>icons/social/trakt}}Trakt</a></li> --}}
|
||||
{{! Trello }}
|
||||
{{!-- <li><a href="#">{{>icons/social/trello}}Trello</a></li> --}}
|
||||
{{! Tumblr }}
|
||||
{{!-- <li><a href="#">{{>icons/social/tumblr}}Tumblr</a></li> --}}
|
||||
{{! Twilio }}
|
||||
{{!-- <li><a href="#">{{>icons/social/twilio}}Twilio</a></li> --}}
|
||||
{{! Twitch }}
|
||||
{{!-- <li><a href="#">{{>icons/social/twitch}}Twitch</a></li> --}}
|
||||
{{! Twoo }}
|
||||
{{!-- <li><a href="#">{{>icons/social/twoo}}Twoo</a></li> --}}
|
||||
{{! Udacity }}
|
||||
{{!-- <li><a href="#">{{>icons/social/udacity}}Udacity</a></li> --}}
|
||||
{{! Udemy }}
|
||||
{{!-- <li><a href="#">{{>icons/social/udemy}}Udemy</a></li> --}}
|
||||
{{! Unsplash }}
|
||||
{{!-- <li><a href="#">{{>icons/social/unsplash}}Unsplash</a></li> --}}
|
||||
{{! Upwork }}
|
||||
{{!-- <li><a href="#">{{>icons/social/upwork}}Upwork</a></li> --}}
|
||||
{{! Vimeo }}
|
||||
{{!-- <li><a href="#">{{>icons/social/vimeo}}Vimeo</a></li> --}}
|
||||
{{! Vine }}
|
||||
{{!-- <li><a href="#">{{>icons/social/vine}}Vine</a></li> --}}
|
||||
{{! Visa }}
|
||||
{{!-- <li><a href="#">{{>icons/social/visa}}Visa</a></li> --}}
|
||||
{{! vk }}
|
||||
{{!-- <li><a href="#">{{>icons/social/vk}}vk</a></li> --}}
|
||||
{{! VSCO }}
|
||||
{{!-- <li><a href="#">{{>icons/social/vsco}}VSCO</a></li> --}}
|
||||
{{! WhatsApp }}
|
||||
{{!-- <li><a href="#">{{>icons/social/whatsapp}}WhatsApp</a></li> --}}
|
||||
{{! WeChat }}
|
||||
{{!-- <li><a href="#">{{>icons/social/wechat}}WeChat</a></li> --}}
|
||||
{{! Weibo }}
|
||||
{{!-- <li><a href="#">{{>icons/social/weibo}}Weibo</a></li> --}}
|
||||
{{! Wikipedia }}
|
||||
{{!-- <li><a href="#">{{>icons/social/wikipedia}}Wikipedia</a></li> --}}
|
||||
{{! Wire }}
|
||||
{{!-- <li><a href="#">{{>icons/social/wire}}Wire</a></li> --}}
|
||||
{{! WordPress }}
|
||||
{{!-- <li><a href="#">{{>icons/social/wordpress}}WordPress</a></li> --}}
|
||||
{{! Xbox }}
|
||||
{{!-- <li><a href="#">{{>icons/social/xbox}}Xbox</a></li> --}}
|
||||
{{! YouTube }}
|
||||
{{!-- <li><a href="#">{{>icons/social/youtube}}YouTube</a></li> --}}
|
||||
{{! YouTube Music}}
|
||||
{{!-- <li><a href="#">{{>icons/social/youtubemusic}}YouTube Music</a></li> --}}
|
||||
{{! Zendesk }}
|
||||
{{!-- <li><a href="#">{{>icons/social/zendesk}}Zendesk</a></li> --}}
|
17
partials/header.hbs
Normal file
@ -0,0 +1,17 @@
|
||||
<header class="header-section{{>partial_mode}}">
|
||||
<div class="header-wrap global-padding">
|
||||
<div class="header-logo">{{>logo}}</div>
|
||||
<div class="header-nav{{#if @custom.accent_color_buttons}} is-button-accent-color{{/if}}">
|
||||
{{>search is_mobile=true}}
|
||||
<input id="toggle" class="header-checkbox" type="checkbox">
|
||||
<label class="header-toggle" for="toggle">
|
||||
<span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</span>
|
||||
</label>
|
||||
<nav>{{navigation}}</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
24
partials/hero.hbs
Normal file
@ -0,0 +1,24 @@
|
||||
<div class="hero-section{{#get "posts" limit="1" filter="featured:true+feature_image:-null" as |slider|}}{{^if slider}} no-slider{{/if}}{{/get}}{{>partial_mode}}">
|
||||
<div class="hero-wrap">
|
||||
<div class="hero-content global-padding">
|
||||
<h1 class="hero-title{{#match @custom.hero_title_size_and_subscription_form_or_button "Medium"}} hero-title-medium{{else match @custom.hero_title_size_and_subscription_form_or_button "Small"}} global-title hero-title-small{{else match @custom.hero_title_size_and_subscription_form_or_button "Medium + Subscription form"}} hero-title-medium{{else match @custom.hero_title_size_and_subscription_form_or_button "Small + Subscription form"}} global-title hero-title-small{{else match @custom.hero_title_size_and_subscription_form_or_button "Medium + Subscription button"}} hero-title-medium{{else match @custom.hero_title_size_and_subscription_form_or_button "Small + Subscription button"}} global-title hero-title-small{{else}} hero-title-large{{/match}}">{{#if @custom.hero_title_text}}{{{@custom.hero_title_text}}}{{else}}{{{t "{start-bold}Hey, we’re {site-title}.{end-bold} See our thoughts, stories and ideas." start-bold="<span>" end-bold="</span>" site-title=@site.title}}}{{/if}}</h1>
|
||||
{{#if @site.members_enabled}}
|
||||
{{#match @custom.hero_title_size_and_subscription_form_or_button "Large + Subscription form"}}
|
||||
{{>members/subscribe_form is_hero=true}}
|
||||
{{else match @custom.hero_title_size_and_subscription_form_or_button "Medium + Subscription form"}}
|
||||
{{>members/subscribe_form is_hero=true}}
|
||||
{{else match @custom.hero_title_size_and_subscription_form_or_button "Small + Subscription form"}}
|
||||
{{>members/subscribe_form is_hero=true}}
|
||||
{{/match}}
|
||||
{{/if}}
|
||||
{{#match @custom.hero_title_size_and_subscription_form_or_button "Large + Subscription button"}}
|
||||
{{>members/subscribe_button}}
|
||||
{{else match @custom.hero_title_size_and_subscription_form_or_button "Medium + Subscription button"}}
|
||||
{{>members/subscribe_button}}
|
||||
{{else match @custom.hero_title_size_and_subscription_form_or_button "Small + Subscription button"}}
|
||||
{{>members/subscribe_button}}
|
||||
{{/match}}
|
||||
</div>
|
||||
{{>featured}}
|
||||
</div>
|
||||
</div>
|
1
partials/icons/site/arrow_left.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.775 3.225 0 12l8.775 8.775 1.498-1.407-6.421-6.267H24v-2.202H3.852l6.421-6.267-1.498-1.407Z"/></svg>
|
After Width: | Height: | Size: 183 B |
1
partials/icons/site/arrow_right.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15.225 20.775 24 12l-8.775-8.775-1.498 1.407 6.421 6.267H0v2.202h20.148l-6.421 6.267 1.498 1.407Z"/></svg>
|
After Width: | Height: | Size: 187 B |
1
partials/icons/site/chevron.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m11.974 18.908.019.002.025.001c.085 0 .166-.034.226-.094L23.906 7.155A.32.32 0 0 0 24 6.928c0-.085-.034-.166-.094-.227l-1.519-1.518a.3217.3217 0 0 0-.454 0l-9.94 9.94-9.927-9.926a.3218.3218 0 0 0-.227-.094c-.085 0-.167.034-.227.094L.094 6.716a.3217.3217 0 0 0 0 .454l11.647 11.647c.06.06.142.094.227.094l.006-.003Z"/></svg>
|
After Width: | Height: | Size: 403 B |
1
partials/icons/site/close.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.997 10.846L1.369.219 1.363.214A.814.814 0 00.818.005.821.821 0 000 .822c0 .201.074.395.208.545l.006.006L10.842 12 .214 22.626l-.006.006a.822.822 0 00-.208.546c0 .447.37.817.818.817a.814.814 0 00.551-.215l10.628-10.627 10.628 10.628.005.005a.816.816 0 001.368-.603.816.816 0 00-.213-.552l-.006-.005L13.151 12l10.63-10.627c.003 0 .004-.003.006-.005A.82.82 0 0024 .817a.817.817 0 00-1.37-.602l-.004.004-10.63 10.627z"/></svg>
|
After Width: | Height: | Size: 506 B |
1
partials/icons/site/copy.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 33 24" xmlns="http://www.w3.org/2000/svg"><path d="M27.3999996,13.4004128 L21.7999996,13.4004128 L21.7999996,19 L18.9999996,19 L18.9999996,13.4004128 L13.3999996,13.4004128 L13.3999996,10.6006192 L18.9999996,10.6006192 L18.9999996,5 L21.7999996,5 L21.7999996,10.6006192 L27.3999996,10.6006192 L27.3999996,13.4004128 Z M12,20.87 C7.101,20.87 3.13,16.898 3.13,12 C3.13,7.102 7.101,3.13 12,3.13 C12.091,3.13 12.181,3.139 12.272,3.142 C9.866,5.336 8.347,8.487 8.347,12 C8.347,15.512 9.866,18.662 12.271,20.857 C12.18,20.859 12.091,20.87 12,20.87 Z M20.347,0 C18.882,0 17.484,0.276 16.186,0.756 C14.882,0.271 13.473,0 12,0 C5.372,0 0,5.373 0,12 C0,18.628 5.372,24 12,24 C13.471,24 14.878,23.726 16.181,23.242 C17.481,23.724 18.88,24 20.347,24 C26.975,24 32.347,18.628 32.347,12 C32.347,5.373 26.975,0 20.347,0 Z"/></svg>
|
After Width: | Height: | Size: 844 B |
1
partials/icons/site/link.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.374 5.374 0 12 0c6.628 0 12 5.374 12 12 0 6.628-5.372 12-12 12-6.626 0-12-5.372-12-12zm5.593-.866a5.34 5.34 0 0 0-1.558 3.74c0 2.868 2.369 5.237 5.174 5.174a5.235 5.235 0 0 0 3.74-1.558l1.559-1.558-1.746-1.745-1.558 1.558a2.737 2.737 0 0 1-1.933.81c-1.496 0-2.743-1.246-2.743-2.743 0-.748.313-1.434.81-1.932l1.559-1.558-1.745-1.746-1.559 1.559v-.001zm7.62-1.962l-4.85 4.85 1.698 1.696 4.848-4.85-1.696-1.696zm4.843 4.212a5.34 5.34 0 0 0 1.558-3.741c0-2.868-2.368-5.236-5.173-5.174A5.232 5.232 0 0 0 10.7 6.03L9.142 7.585l1.746 1.746 1.558-1.56a2.738 2.738 0 0 1 1.932-.809c1.496 0 2.743 1.246 2.743 2.742a2.74 2.74 0 0 1-.81 1.933l-1.56 1.559 1.746 1.745 1.56-1.558z"/></svg>
|
After Width: | Height: | Size: 765 B |
1
partials/icons/site/padlock.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5.445 9.333V6.667C5.445 2.985 8.38 0 12 0c3.62 0 6.554 2.985 6.554 6.667v2.666s2.622 1.214 2.622 6c0 4.787-3.815 8.667-8.52 8.667h-1.312c-4.706 0-8.52-3.88-8.52-8.667 0-4.786 2.621-6 2.621-6zm10.487 0V6.667c0-2.21-1.76-4-3.932-4-2.172 0-3.933 1.79-3.933 4v2.666h7.865z"/></svg>
|
After Width: | Height: | Size: 358 B |
1
partials/icons/site/pin.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0C6.908 0 2.766 4.143 2.766 9.234c0 1.529.456 3.028 1.108 4.388C5.872 17.785 11.79 24 12 24c.21 0 6.524-6.908 8.128-10.382.632-1.368 1.106-2.855 1.106-4.384C21.234 4.143 17.092 0 12 0zm0 4.425a4.663 4.663 0 014.661 4.661A4.663 4.663 0 0112 13.747a4.663 4.663 0 01-4.661-4.661A4.663 4.663 0 0112 4.425z"/></svg>
|
After Width: | Height: | Size: 394 B |
1
partials/icons/site/rss.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/></svg>
|
After Width: | Height: | Size: 382 B |
1
partials/icons/site/search.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m16.822 18.813 4.798 4.799c.262.248.61.388.972.388.772-.001 1.407-.637 1.407-1.409 0-.361-.139-.709-.387-.971l-4.799-4.797c3.132-4.108 2.822-10.005-.928-13.756l-.007-.007-.278-.278a.6985.6985 0 0 0-.13-.107C13.36-1.017 7.021-.888 3.066 3.067c-4.088 4.089-4.088 10.729 0 14.816 3.752 3.752 9.65 4.063 13.756.93Zm-.965-13.719c2.95 2.953 2.95 7.81 0 10.763-2.953 2.949-7.809 2.949-10.762 0-2.951-2.953-2.951-7.81 0-10.763 2.953-2.95 7.809-2.95 10.762 0Z"/></svg>
|
After Width: | Height: | Size: 539 B |
1
partials/icons/site/user.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd"><path d="M1.631 23.361l-.001-.078c0-5.723 4.647-10.37 10.37-10.37 5.723 0 10.37 4.647 10.37 10.37l-.001.078h-1.5l.001-.078c0-4.895-3.975-8.87-8.87-8.87s-8.87 3.975-8.87 8.87l.001.078h-1.5zM12 .639a5.657 5.657 0 015.654 5.655A5.657 5.657 0 0112 11.948a5.657 5.657 0 01-5.654-5.654A5.657 5.657 0 0112 .639zm0 1.5a4.156 4.156 0 010 8.309 4.156 4.156 0 010-8.309z"/></svg>
|
After Width: | Height: | Size: 459 B |
1
partials/icons/social/adobecreativecloud.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M24 11.599v.803c-.008.044-.017.087-.022.13-.04.35-.067.701-.124 1.048a8.663 8.663 0 0 1-1.176 3.144 8.848 8.848 0 0 1-3.645 3.36 8.422 8.422 0 0 1-2.812.843c-.217.026-.435.049-.652.073H7.138c-.043-.008-.085-.02-.128-.024a7.092 7.092 0 0 1-2.448-.598c-1.697-.755-2.963-1.98-3.791-3.664a7.298 7.298 0 0 1-.7-2.37L0 13.742v-.78c.008-.043.02-.086.023-.13a7.286 7.286 0 0 1 .461-2.175C1.2 8.777 2.45 7.381 4.222 6.478a7.227 7.227 0 0 1 2.928-.77 7.998 7.998 0 0 1 1.503.071.188.188 0 0 0 .142-.047 8.898 8.898 0 0 1 2.458-1.81 8.493 8.493 0 0 1 2.825-.848c.234-.027.467-.05.7-.074h.72c.046.007.094.016.14.021.357.043.715.07 1.068.13a8.37 8.37 0 0 1 3.073 1.186 8.89 8.89 0 0 1 3.319 3.713 8.76 8.76 0 0 1 .83 2.862c.026.229.048.458.072.687m-13.42-5.2c.015.02.019.029.025.032.493.247.965.538 1.41.867.028.02.098.012.132-.01 1.222-.787 2.547-1.059 3.97-.802 1.395.251 2.53.96 3.397 2.092.982 1.28 1.357 2.73 1.086 4.34-.182 1.08-.608 2.05-1.33 2.861-1.32 1.48-2.973 2.092-4.918 1.833-1.197-.16-2.23-.685-3.086-1.564-1.098-1.128-2.204-2.248-3.305-3.373-.147-.15-.31-.27-.521-.297a.826.826 0 0 0-.864.48c-.142.3-.124.64.185.948 1.227 1.226 2.444 2.462 3.67 3.69.21.21.435.405.674.582.896.661 1.906 1.027 3 1.174.858.116 1.71.09 2.555-.102 1.612-.369 2.948-1.205 4-2.497a7.213 7.213 0 0 0 1.576-3.67 7.313 7.313 0 0 0-.065-2.36c-.244-1.27-.773-2.408-1.62-3.377-1.618-1.846-3.653-2.67-6.074-2.487a6.664 6.664 0 0 0-2.641.79 6.962 6.962 0 0 0-1.255.85M9.988 19.29a15.79 15.79 0 0 1-.1-.094c-.501-.482-1.006-.96-1.502-1.449a.403.403 0 0 0-.32-.137c-.502.012-1.005.014-1.5-.1-2.461-.565-3.89-3.286-2.983-5.68.715-1.889 2.696-3.038 4.649-2.684.875.159 1.644.536 2.274 1.197.77.808 1.562 1.592 2.34 2.391.176.182.38.265.625.23.316-.046.569-.2.683-.516.112-.31.058-.605-.173-.844-.816-.84-1.613-1.702-2.462-2.507-1.647-1.561-3.588-2.026-5.736-1.362-2.888.893-4.579 3.926-3.919 6.919.602 2.727 2.947 4.64 5.691 4.643h2.299c.038 0 .076-.004.134-.007" /></svg>
|
After Width: | Height: | Size: 2.0 KiB |
1
partials/icons/social/airbnb.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.998 18.267c-1.352-1.696-2.147-3.182-2.412-4.455-.263-1.026-.159-1.847.291-2.464.477-.71 1.187-1.055 2.12-1.055s1.642.345 2.119 1.062c.446.61.558 1.432.286 2.464-.291 1.298-1.085 2.784-2.411 4.456zm9.597 1.14c-.185 1.245-1.034 2.278-2.2 2.782-2.251.98-4.48-.583-6.388-2.703 3.155-3.95 3.738-7.025 2.384-9.014-.795-1.14-1.933-1.695-3.393-1.695-2.943 0-4.561 2.49-3.925 5.38.37 1.564 1.351 3.342 2.915 5.33-.98 1.084-1.909 1.855-2.73 2.332-.636.344-1.245.557-1.828.608-2.677.399-4.776-2.198-3.823-4.877.132-.345.395-.98.845-1.961l.025-.053C4.94 12.36 6.717 8.75 8.759 4.746l.053-.132.58-1.115c.45-.822.635-1.19 1.351-1.643.345-.209.769-.314 1.245-.314.954 0 1.697.557 2.015 1.006.158.239.345.557.582.953l.558 1.088.08.159c2.04 4.002 3.819 7.605 5.276 10.789l.026.025.533 1.22.318.764c.243.612.294 1.221.213 1.857zm1.219-2.389c-.186-.583-.504-1.271-.9-2.093v-.03c-1.887-4.005-3.64-7.605-5.304-10.84l-.111-.162C15.313 1.461 14.464 0 11.998 0 9.56 0 8.524 1.694 7.465 3.897l-.081.16c-1.668 3.234-3.42 6.839-5.301 10.842v.053l-.558 1.219c-.21.504-.317.768-.345.847-1.35 3.712 1.432 6.972 4.8 6.972.027 0 .132 0 .264-.027h.372c1.75-.213 3.553-1.325 5.382-3.316 1.828 1.988 3.633 3.103 5.38 3.316h.372c.132.027.238.027.264.027 3.368.003 6.15-3.26 4.8-6.972z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
partials/icons/social/amazon.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M.045 18.02c.072-.116.187-.124.348-.022 3.636 2.11 7.594 3.166 11.87 3.166 2.852 0 5.668-.533 8.447-1.595l.315-.14c.138-.06.234-.1.293-.13.226-.088.39-.046.525.13.12.174.09.336-.12.48-.256.19-.6.41-1.006.654-1.244.743-2.64 1.316-4.185 1.726-1.53.406-3.045.61-4.516.61-2.265 0-4.41-.396-6.435-1.187-2.02-.794-3.82-1.91-5.43-3.35-.1-.074-.15-.15-.15-.22 0-.047.02-.09.05-.13zm6.565-6.218c0-1.005.247-1.863.743-2.577.495-.71 1.17-1.25 2.04-1.615.796-.335 1.756-.575 2.912-.72.39-.046 1.033-.103 1.92-.174v-.37c0-.93-.105-1.558-.3-1.875-.302-.43-.78-.65-1.44-.65h-.182c-.48.046-.896.196-1.246.46-.35.27-.575.63-.675 1.096-.06.3-.206.465-.435.51l-2.52-.315c-.248-.06-.372-.18-.372-.39 0-.046.007-.09.022-.15.247-1.29.855-2.25 1.82-2.88.976-.616 2.1-.975 3.39-1.05h.54c1.65 0 2.957.434 3.888 1.29.135.15.27.3.405.48.12.165.224.314.283.45.075.134.15.33.195.57.06.254.105.42.135.51.03.104.062.3.076.615.01.313.02.493.02.553v5.28c0 .376.06.72.165 1.036.105.313.21.54.315.674l.51.674c.09.136.136.256.136.36 0 .12-.06.226-.18.314-1.2 1.05-1.86 1.62-1.963 1.71-.165.135-.375.15-.63.045-.195-.166-.375-.332-.526-.496l-.31-.347c-.06-.074-.166-.21-.317-.42l-.3-.435c-.81.886-1.603 1.44-2.4 1.665-.494.15-1.093.227-1.83.227-1.11 0-2.04-.343-2.76-1.034-.72-.69-1.08-1.665-1.08-2.94l-.05-.076zm3.753-.438c0 .566.14 1.02.425 1.364.285.34.675.512 1.155.512.045 0 .106-.007.195-.02.09-.016.134-.023.166-.023.614-.16 1.08-.553 1.424-1.178.165-.28.285-.58.36-.91.09-.32.12-.59.135-.8.015-.195.015-.54.015-1.005v-.54c-.84 0-1.484.06-1.92.18-1.275.36-1.92 1.17-1.92 2.43l-.035-.02zm9.162 7.027c.03-.06.075-.11.132-.17.362-.243.714-.41 1.05-.5.55-.133 1.09-.222 1.612-.24.14-.012.28 0 .41.03.65.06 1.05.168 1.172.33.063.09.09.228.09.39v.15c0 .51-.14 1.11-.415 1.8-.278.69-.664 1.248-1.156 1.68-.073.06-.14.09-.197.09-.03 0-.06 0-.09-.012-.09-.044-.107-.12-.064-.24.54-1.26.806-2.143.806-2.64 0-.15-.03-.27-.087-.344-.145-.166-.55-.257-1.224-.257-.243 0-.533.016-.87.046-.363.045-.7.09-1 .135-.09 0-.148-.014-.18-.044-.03-.03-.036-.047-.02-.077 0-.017.006-.03.02-.063v-.06z"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
partials/icons/social/android.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.146 9.227c0-.815-.658-1.478-1.476-1.478s-1.48.66-1.48 1.48v6.19c0 .81.663 1.48 1.483 1.48.814 0 1.476-.67 1.476-1.48v-6.2h-.01zM5.393 8.032l.004 9.6c0 .885.704 1.59 1.573 1.59h1.063v3.28c0 .82.66 1.482 1.47 1.482s1.467-.66 1.48-1.468v-3.28h1.993v3.28c0 .823.66 1.483 1.47 1.483.823 0 1.482-.66 1.482-1.49v-3.28h1.078c.87 0 1.573-.71 1.573-1.578v-9.63L5.35 8.03l.04.002zm9.648-2.93c-.31 0-.56-.25-.56-.56 0-.305.25-.558.56-.56.31 0 .56.255.56.56 0 .31-.25.56-.56.56m-6.06 0c-.31 0-.56-.25-.56-.56 0-.307.25-.558.56-.558.31 0 .56.255.56.57s-.252.567-.57.567m6.29-2.9L16.29.33c.06-.105.014-.226-.076-.285C16.11 0 15.99.03 15.93.135l-1.05 1.9c-.868-.405-1.856-.63-2.89-.63s-2.018.215-2.892.603L8.064.105c-.053-.098-.18-.135-.278-.08-.1.045-.136.18-.08.27l1.03 1.875c-2.03 1.047-3.4 3.04-3.4 5.33h13.328c0-2.29-1.368-4.283-3.396-5.33M3.33 7.742c-.817 0-1.48.665-1.48 1.483v6.192c0 .82.664 1.48 1.484 1.48.814 0 1.477-.66 1.477-1.48v-6.19c0-.815-.66-1.478-1.47-1.478"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
partials/icons/social/angellist.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16.465 9.954c.735-2 1.31-3.65 1.723-4.954.41-1.3.618-2.1.618-2.4 0-.315-.07-.564-.21-.738-.135-.174-.324-.264-.567-.264-.31 0-.63.255-.94.765-.32.51-.67 1.334-1.06 2.467l-1.65 4.76 2.08.362h-.01v.002zm-2.193 4.435c-.474-.03-.923-.08-1.344-.15-.42-.08-.83-.19-1.216-.33.177.35.335.7.472 1.05.138.35.25.69.34 1.04.26-.33.54-.63.83-.9.292-.27.6-.51.915-.72zm-1.862-5l-1.78-5.14c-.464-1.31-.82-2.16-1.075-2.57-.25-.4-.525-.6-.822-.6-.23 0-.417.08-.56.26-.144.18-.214.41-.214.7 0 .5.19 1.38.57 2.64.38 1.25.96 2.89 1.73 4.93.06-.12.16-.21.28-.26.12-.05.28-.08.49-.08.06 0 .19.01.39.01.19.02.52.04.97.09zm-1.618 7.96c.188 0 .36-.09.51-.26.15-.18.234-.36.234-.55 0-.21-.15-.7-.452-1.46-.3-.76-.68-1.51-1.13-2.25-.33-.55-.655-.97-.97-1.25-.324-.28-.625-.42-.91-.42-.23 0-.484.14-.767.44-.28.29-.42.56-.42.81 0 .26.14.66.413 1.18.275.53.645 1.09 1.104 1.68.485.65.94 1.15 1.37 1.51.428.36.77.54 1.02.54h-.002zm-4.945-.4c.156.19.37.46.646.82.723 1 1.395 1.5 2.01 1.5.21 0 .397-.07.563-.2.164-.14.247-.27.247-.42 0-.17-.11-.44-.33-.83-.222-.39-.524-.82-.907-1.3-.44-.56-.805-.97-1.098-1.23-.288-.26-.525-.39-.697-.39-.38 0-.74.21-1.06.62-.32.4-.48.9-.48 1.46 0 .45.12.95.35 1.51.23.55.55 1.11.98 1.67.65.87 1.46 1.53 2.42 2 .96.46 2.03.69 3.19.69 2.14 0 3.94-.8 5.38-2.4 1.45-1.6 2.17-3.6 2.17-6.01 0-.74-.05-1.33-.16-1.76-.11-.43-.29-.75-.54-.95-.45-.38-1.33-.71-2.63-1.01-1.3-.3-2.66-.45-4.08-.45-.39 0-.68.07-.84.2-.16.13-.24.36-.24.673 0 .75.42 1.29 1.26 1.626.84.34 2.19.51 4.06.51h.676c.15 0 .28.06.37.174.09.11.15.28.18.52-.19.17-.57.37-1.154.6-.59.22-1.03.45-1.34.665-.66.484-1.19 1.06-1.59 1.724-.4.66-.6 1.29-.6 1.883 0 .36.086.8.258 1.31.17.51.26.823.26.95v.11l-.03.15c-.48-.03-.86-.313-1.14-.85-.287-.53-.42-1.24-.42-2.13v-.15c-.09.075-.176.135-.26.165-.086.034-.178.05-.27.05-.1 0-.198-.006-.29-.02-.09-.016-.18-.04-.29-.075.03.12.057.24.076.353.01.12.02.21.02.27 0 .406-.16.76-.48 1.05-.32.287-.7.43-1.14.43-.69 0-1.397-.34-2.11-1.01-.715-.674-1.07-1.34-1.07-1.985 0-.12.015-.23.04-.323s.075-.17.14-.24zm11.807-6.73c.985.18 1.685.6 2.09 1.25.41.64.61 1.66.61 3.06 0 2.77-.828 5.03-2.492 6.79-1.667 1.76-3.797 2.65-6.387 2.65-1.023 0-2.016-.19-2.976-.56-.97-.37-1.79-.89-2.49-1.54-.79-.73-1.39-1.49-1.78-2.3-.4-.81-.6-1.64-.6-2.48 0-.95.2-1.68.6-2.19.4-.52 1.05-.87 1.93-1.06-.17-.39-.29-.71-.36-.98-.08-.27-.12-.47-.12-.61 0-.5.26-1.01.78-1.52.52-.52 1.01-.78 1.47-.78.19 0 .4.03.62.11.22.07.47.19.75.35-.81-2.35-1.43-4.2-1.81-5.5-.39-1.31-.58-2.2-.58-2.7 0-.68.17-1.23.52-1.63.36-.4.84-.6 1.44-.6 1.03 0 2.34 2.31 3.93 6.923.28.79.48 1.4.63 1.83l.51-1.453c1.59-4.55 2.95-6.83 4.1-6.83.56 0 1.01.19 1.34.57.33.383.5.887.5 1.523 0 .48-.19 1.36-.56 2.65-.367 1.28-.92 2.96-1.67 5.04"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
partials/icons/social/angular.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9.93 12.645h4.134L11.996 7.74M11.996.009L.686 3.988l1.725 14.76 9.585 5.243 9.588-5.238L23.308 3.99 11.996.01zm7.058 18.297h-2.636l-1.42-3.501H8.995l-1.42 3.501H4.937l7.06-15.648 7.057 15.648z"/></svg>
|
After Width: | Height: | Size: 282 B |
1
partials/icons/social/apple.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.078 23.55c-.473-.316-.893-.703-1.244-1.15-.383-.463-.738-.95-1.064-1.454-.766-1.12-1.365-2.345-1.78-3.636-.5-1.502-.743-2.94-.743-4.347 0-1.57.34-2.94 1.002-4.09.49-.9 1.22-1.653 2.1-2.182.85-.53 1.84-.82 2.84-.84.35 0 .73.05 1.13.15.29.08.64.21 1.07.37.55.21.85.34.95.37.32.12.59.17.8.17.16 0 .39-.05.645-.13.145-.05.42-.14.81-.31.386-.14.692-.26.935-.35.37-.11.728-.21 1.05-.26.39-.06.777-.08 1.148-.05.71.05 1.36.2 1.94.42 1.02.41 1.843 1.05 2.457 1.96-.26.16-.5.346-.725.55-.487.43-.9.94-1.23 1.505-.43.77-.65 1.64-.644 2.52.015 1.083.29 2.035.84 2.86.387.6.904 1.114 1.534 1.536.31.21.582.355.84.45-.12.375-.252.74-.405 1.1-.347.807-.76 1.58-1.25 2.31-.432.63-.772 1.1-1.03 1.41-.402.48-.79.84-1.18 1.097-.43.285-.935.436-1.452.436-.35.015-.7-.03-1.034-.127-.29-.095-.576-.202-.856-.323-.293-.134-.596-.248-.905-.34-.38-.1-.77-.148-1.164-.147-.4 0-.79.05-1.16.145-.31.088-.61.196-.907.325-.42.175-.695.29-.855.34-.324.096-.656.154-.99.175-.52 0-1.004-.15-1.486-.45zm6.854-18.46c-.68.34-1.326.484-1.973.436-.1-.646 0-1.31.27-2.037.24-.62.56-1.18 1-1.68.46-.52 1.01-.95 1.63-1.26.66-.34 1.29-.52 1.89-.55.08.68 0 1.35-.25 2.07-.228.64-.568 1.23-1 1.76-.435.52-.975.95-1.586 1.26z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
partials/icons/social/applemusic.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.997 6.124c0-.738-.065-1.47-.24-2.19-.317-1.31-1.062-2.31-2.18-3.043C21.003.517 20.373.285 19.7.164c-.517-.093-1.038-.135-1.564-.15-.04-.003-.083-.01-.124-.013H5.988c-.152.01-.303.017-.455.026C4.786.07 4.043.15 3.34.428 2.004.958 1.04 1.88.475 3.208c-.192.448-.292.925-.363 1.408-.056.392-.088.785-.1 1.18 0 .032-.007.062-.01.093v12.223c.01.14.017.283.027.424.05.815.154 1.624.497 2.373.65 1.42 1.738 2.353 3.234 2.802.42.127.856.187 1.293.228.555.053 1.11.06 1.667.06h11.03c.525 0 1.048-.034 1.57-.1.823-.106 1.597-.35 2.296-.81.84-.553 1.472-1.287 1.88-2.208.186-.42.293-.87.37-1.324.113-.675.138-1.358.137-2.04-.002-3.8 0-7.595-.003-11.393zm-6.423 3.99v5.712c0 .417-.058.827-.244 1.206-.29.59-.76.962-1.388 1.14-.35.1-.706.157-1.07.173-.95.045-1.773-.6-1.943-1.536-.142-.773.227-1.624 1.038-2.022.323-.16.67-.25 1.018-.324.378-.082.758-.153 1.134-.24.274-.063.457-.23.51-.516.014-.063.02-.13.02-.193 0-1.815 0-3.63-.002-5.443 0-.062-.01-.125-.026-.185-.04-.15-.15-.243-.304-.234-.16.01-.318.035-.475.066-.76.15-1.52.303-2.28.456l-2.326.47-1.374.278c-.016.003-.032.01-.048.013-.277.077-.377.203-.39.49-.002.042 0 .086 0 .13-.002 2.602 0 5.204-.003 7.805 0 .42-.047.836-.215 1.227-.278.64-.77 1.04-1.434 1.233-.35.1-.71.16-1.075.172-.96.036-1.755-.6-1.92-1.544-.14-.812.23-1.685 1.154-2.075.357-.15.73-.232 1.108-.31.287-.06.575-.116.86-.177.383-.083.583-.323.6-.714v-.15c0-2.96 0-5.922.002-8.882 0-.123.013-.25.042-.37.07-.285.273-.448.546-.518.255-.066.515-.112.774-.165.733-.15 1.466-.296 2.2-.444l2.27-.46c.67-.134 1.34-.27 2.01-.403.22-.043.443-.088.664-.106.31-.025.523.17.554.482.008.073.012.148.012.223.002 1.91.002 3.822 0 5.732z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
partials/icons/social/applepay.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4.388 8.284c-.282.337-.732.602-1.182.564-.056-.455.164-.938.422-1.237C3.91 7.265 4.402 7.02 4.8 7c.047.474-.136.938-.412 1.284zm.407.654c-.651-.038-1.21.375-1.518.375-.315 0-.788-.356-1.304-.346-.67.01-1.293.393-1.635 1.005C-.366 11.194.155 13.005.834 14c.333.493.732 1.033 1.257 1.014.496-.019.693-.327 1.293-.327.605 0 .778.327 1.304.318.543-.01.885-.493 1.218-.986.38-.56.535-1.104.544-1.133-.01-.01-1.05-.412-1.06-1.625-.009-1.015.82-1.498.858-1.526-.468-.702-1.2-.778-1.453-.797zM8.56 7.564v7.389h1.135v-2.526h1.57c1.434 0 2.442-.996 2.442-2.436 0-1.441-.989-2.427-2.404-2.427H8.559zm1.135.967h1.308c.984 0 1.546.53 1.546 1.464 0 .934-.562 1.47-1.551 1.47H9.694V8.53zm6.084 6.478c.713 0 1.374-.364 1.674-.943h.023v.887h1.05v-3.678c0-1.066-.844-1.754-2.142-1.754-1.205 0-2.095.697-2.128 1.654h1.022c.084-.455.501-.753 1.073-.753.694 0 1.083.327 1.083.929v.407l-1.416.086c-1.317.08-2.03.625-2.03 1.573 0 .957.736 1.592 1.791 1.592zm.305-.876c-.605 0-.99-.294-.99-.744 0-.465.371-.735 1.079-.778l1.26-.08v.417c0 .692-.58 1.185-1.35 1.185zm3.844 2.83c1.106 0 1.626-.427 2.08-1.721L24 9.592h-1.153l-1.336 4.365h-.023l-1.336-4.365h-1.186l1.921 5.38-.103.327c-.173.554-.454.767-.956.767-.089 0-.262-.01-.333-.019v.887c.066.019.347.028.432.028z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
partials/icons/social/asana.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.78 12.653c-2.882 0-5.22 2.336-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.34 5.22-5.22-2.336-5.22-5.22-5.22zm-13.56 0c-2.88 0-5.22 2.337-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.338 5.22-5.22-2.336-5.22-5.22-5.22zm12-6.525c0 2.883-2.337 5.22-5.22 5.22-2.882 0-5.22-2.337-5.22-5.22 0-2.88 2.338-5.22 5.22-5.22 2.883 0 5.22 2.34 5.22 5.22z"/></svg>
|
After Width: | Height: | Size: 421 B |
1
partials/icons/social/atlassian.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.31 23.957H15.71a1.26 1.26 0 0 1-1.312-.792c-1.332-2.665-2.78-5.288-3.987-8.046a15.25 15.25 0 0 1 .885-14.47c.166-.281.52-.625.791-.625s.593.375.74.666q5.444 10.89 10.898 21.788c.542 1.041.292 1.468-.905 1.479zm-14.573 0H1.04c-1.041 0-1.27-.417-.812-1.333q2.8-5.538 5.549-11.055c.5-1.041.895-1.041 1.592-.177a12.221 12.221 0 0 1 2.51 11.17c-.344 1.322-.532 1.405-1.864 1.405z"/></svg>
|
After Width: | Height: | Size: 467 B |
1
partials/icons/social/baidu.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4.312 12.65c2.61-.562 2.25-3.684 2.176-4.366-.128-1.05-1.366-2.888-3.044-2.74-2.11.186-2.418 3.24-2.418 3.24-.287 1.41.682 4.426 3.286 3.865m4.845-5.24c1.44 0 2.604-1.66 2.604-3.71 0-2.04-1.16-3.7-2.6-3.7S6.55 1.65 6.55 3.7c0 2.05 1.17 3.71 2.61 3.71m6.207.245c1.93.26 3.162-1.8 3.412-3.36.25-1.55-1-3.36-2.36-3.67-1.37-.316-3.06 1.874-3.23 3.3-.18 1.75.25 3.49 2.17 3.737M23 10.284c0-.746-.613-2.993-2.91-2.993-2.295 0-2.61 2.12-2.61 3.62 0 1.43.118 3.42 2.985 3.36 2.855-.07 2.543-3.24 2.543-3.99M20.1 16.82s-2.985-2.31-4.726-4.8c-2.36-3.677-5.715-2.18-6.834-.316-1.12 1.883-2.86 3.062-3.105 3.377-.25.31-3.6 2.12-2.854 5.42.75 3.3 3.36 3.24 3.36 3.24s1.92.19 4.16-.31 4.16.12 4.16.12 5.207 1.75 6.648-1.61c1.424-3.37-.81-5.11-.81-5.11"/></svg>
|
After Width: | Height: | Size: 827 B |
1
partials/icons/social/bandcamp.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 18.75l7.437-13.5H24l-7.438 13.5H0z"/></svg>
|
After Width: | Height: | Size: 126 B |
1
partials/icons/social/basecamp.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C5.54 2 .48 10.22 0 17.16 2.028 20.68 6.915 22 12 22s9.975-1.32 12-4.84C23.52 10.218 18.46 2 12 2zm.15 18.4c-9.54 0-10.456-4.034-10.456-4.034l.18-.976S4.5 9.72 6.15 9.72s2.34 2.34 3.69 2.34 4.274-5.19 5.324-5.19c1.047 0 2.82 1.95 4.27 3.75 1.45 1.802 2.878 4.887 2.878 4.887l-.008.034.15.886S21.688 20.4 12.148 20.4z"/></svg>
|
After Width: | Height: | Size: 410 B |
1
partials/icons/social/behance.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6.938 4.503c.702 0 1.34.06 1.92.188.577.13 1.07.33 1.485.61.41.28.733.65.96 1.12.225.47.34 1.05.34 1.73 0 .74-.17 1.36-.507 1.86-.338.5-.837.9-1.502 1.22.906.26 1.576.72 2.022 1.37.448.66.665 1.45.665 2.36 0 .75-.13 1.39-.41 1.93-.28.55-.67 1-1.16 1.35-.48.348-1.05.6-1.67.767-.61.165-1.252.254-1.91.254H0V4.51h6.938v-.007zM16.94 16.665c.44.428 1.073.643 1.894.643.59 0 1.1-.148 1.53-.447.424-.29.68-.61.78-.94h2.588c-.403 1.28-1.048 2.2-1.9 2.75-.85.56-1.884.83-3.08.83-.837 0-1.584-.13-2.272-.4-.673-.27-1.24-.65-1.72-1.14-.464-.49-.823-1.08-1.077-1.77-.253-.69-.373-1.45-.373-2.27 0-.803.135-1.54.403-2.23.27-.7.644-1.28 1.12-1.79.495-.51 1.063-.895 1.736-1.194s1.4-.433 2.22-.433c.91 0 1.69.164 2.38.523.67.34 1.22.82 1.66 1.4.44.586.75 1.26.94 2.02.19.75.25 1.54.21 2.38h-7.69c0 .84.28 1.632.71 2.065l-.08.03zm-10.24.05c.317 0 .62-.03.906-.093.29-.06.548-.165.763-.3.21-.135.39-.328.52-.583.13-.24.19-.57.19-.96 0-.75-.22-1.29-.64-1.62-.43-.32-.99-.48-1.69-.48H3.24v4.05H6.7v-.03zm13.607-5.65c-.352-.385-.94-.592-1.657-.592-.468 0-.855.074-1.166.238-.302.15-.55.35-.74.59-.19.24-.317.48-.392.75-.075.26-.12.5-.135.71h4.762c-.07-.75-.33-1.3-.68-1.69v.01zM6.52 10.45c.574 0 1.05-.134 1.425-.412.374-.27.554-.72.554-1.338 0-.344-.07-.625-.18-.846-.13-.22-.3-.39-.5-.512-.21-.124-.45-.21-.72-.257-.27-.053-.56-.074-.84-.074H3.23v3.44h3.29zm9.098-4.958h5.968v1.454h-5.968V5.48v.01z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
partials/icons/social/bigcartel.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 13.068v-1.006c0-.63.252-1.256.88-1.508l7.79-4.9c.503-.252.755-.88.755-1.51V0L12 6.03 2.575 0v12.69c0 3.394 1.51 6.284 4.02 7.917L11.875 24l5.28-3.393c2.513-1.51 4.02-4.398 4.02-7.916V7.036L12 13.068z"/></svg>
|
After Width: | Height: | Size: 292 B |
1
partials/icons/social/bitbucket.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M.778 1.211c-.424-.006-.772.334-.778.758 0 .045.002.09.01.134l3.263 19.811c.084.499.515.867 1.022.872H19.95c.382.004.708-.271.77-.646l3.27-20.03c.068-.418-.216-.813-.635-.881-.045-.008-.089-.011-.133-.01L.778 1.211zM14.52 15.528H9.522L8.17 8.464h7.561l-1.211 7.064z"/></svg>
|
After Width: | Height: | Size: 354 B |
1
partials/icons/social/bitcoin.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.638 14.904c-1.602 6.43-8.113 10.34-14.542 8.736C2.67 22.05-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548v-.002zm-6.35-4.613c.24-1.59-.974-2.45-2.64-3.03l.54-2.153-1.315-.33-.525 2.107c-.345-.087-.705-.167-1.064-.25l.526-2.127-1.32-.33-.54 2.165c-.285-.067-.565-.132-.84-.2l-1.815-.45-.35 1.407s.975.225.955.236c.535.136.63.486.615.766l-1.477 5.92c-.075.166-.24.406-.614.314.015.02-.96-.24-.96-.24l-.66 1.51 1.71.426.93.242-.54 2.19 1.32.327.54-2.17c.36.1.705.19 1.05.273l-.51 2.154 1.32.33.545-2.19c2.24.427 3.93.257 4.64-1.774.57-1.637-.03-2.58-1.217-3.196.854-.193 1.5-.76 1.68-1.93h.01zm-3.01 4.22c-.404 1.64-3.157.75-4.05.53l.72-2.9c.896.23 3.757.67 3.33 2.37zm.41-4.24c-.37 1.49-2.662.735-3.405.55l.654-2.64c.744.18 3.137.524 2.75 2.084v.006z"/></svg>
|
After Width: | Height: | Size: 886 B |
1
partials/icons/social/bitly.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.055 21.26c-1.345.022-2.325-.41-2.386-1.585-.025-.44-.018-.91.002-1.192.137-1.716 1.333-2.95 2.53-3.19 1.482-.294 2.455.38 2.455 2.31 0 1.303-.36 3.618-2.59 3.657h-.016zM11.923 0C5.32 0 0 5.297 0 12.224c0 3.594 1.92 7.062 4.623 9.147.52.4 1.138.367 1.497.02.297-.285.272-.984-.285-1.475-2.16-1.886-3.652-4.76-3.652-7.635 0-5.15 4.58-9.49 9.74-9.49 6.28 0 9.636 5.102 9.636 9.43 0 2.65-1.29 5.84-3.626 7.874.015 0 .493-.942.493-2.784 0-3.13-1.976-4.836-4.28-4.836-1.663 0-2.667.598-3.34 1.152 0-1.272.045-3.652.045-3.652 0-1.572-.54-2.83-2.47-2.86-1.11-.015-1.932.493-2.44 1.647-.18.436-.12.916.254 1.125.3.18.81.046 1.046-.284.165-.21.254-.254.404-.24.24.03.257.405.257.66.014.193.193 2.903.088 9.865C7.98 21.798 9.493 24 13.1 24c1.56 0 2.756-.435 4.493-1.422C20.243 21.08 24 17.758 24 12.128 23.953 5.045 18.265 0 11.933 0"/></svg>
|
After Width: | Height: | Size: 915 B |
1
partials/icons/social/blogger.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24zM12 3.975H9c-2.775 0-5.025 2.25-5.025 5.025v6c0 2.774 2.25 5.024 5.025 5.024h6c2.774 0 5.024-2.25 5.024-5.024v-3.975c0-.6-.45-1.05-1.05-1.05H18c-.524 0-.976-.45-.976-.976 0-2.776-2.25-5.026-5.024-5.026zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975h3.6z"/></svg>
|
After Width: | Height: | Size: 624 B |
1
partials/icons/social/bluesky.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995-2.636-1.861-3.641-1.539-4.3-1.24-.763.343-.902 1.515-.902 2.203 0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.05 9.271 7.733 4.308 4.267-4.308 1.172-6.498-2.74-7.078a8.741 8.741 0 0 1 -.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24-2.752 1.945-5.711 5.884-6.798 7.997z"/></svg>
|
After Width: | Height: | Size: 649 B |
1
partials/icons/social/bower.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.54157 11.3053c-1.2341-1.18676-7.40717-1.92715-9.35444-2.14222.0943-.22248.1748-.45344.24155-.69076.26593-.11654.55198-.2246.84863-.31466.03603.107.2066.5149.303.70878 3.9168.10806 4.1181-2.91032 4.27702-3.73775.15574-.80837.14832-1.59025 1.4917-3.0184-2.0013-.58375-4.87983.90372-5.84393 3.11798-.36234-.1356-.72574-.23626-1.0849-.2977C14.16277 3.8923 12.82257 1 9.30624 1c-2.27782 0-4.5747.9408-6.30162 2.58083-.9302.88358-1.6612 1.93244-2.17293 3.11903C.2797 7.98073 0 9.39086 0 10.8921c0 5.22735 3.56824 9.80736 5.58437 9.80736.8804 0 1.63792-.65898 1.8159-1.25015.1494.40578.606 1.66547.75645 1.98542.2225.47464 1.2491.88465 1.6983.392.5774.32102 1.63792.51384 2.21532-.3422 1.11243.2352 2.09666-.42802 2.11785-1.2205.5456-.0286.81365-.79564.695-1.40588-.08794-.4492-1.02662-2.06276-1.3932-2.61897.72468.5901 2.56177.75645 2.78425 0 1.16858.91748 2.99084.4365 3.13492-.31042 1.42073.3687 3.0491-.4418 2.78213-1.42285 2.28206-.15785 1.99026-2.58515 1.35027-3.2006zM17.5991 7.2815c-.6007-.23626-1.363-.38565-1.89696-.38565-.7575 0-1.21943.42908-1.93244.42908-.14938 0-.50642.00106-.79353-.1017.1886.1981.42273.30512.87723.30512.27122 0 .80942-.1388 1.24486-.2691.00635.09217.0159.18222.0286.27334-.81578.19493-1.6718.71406-1.91973.8486-.5509-1.2173-.07734-2.36787.36022-2.89865 1.9621.00423 3.54757 1.35186 4.03174 1.79895zm.84915-.09112l-.29983-.28075c-.3083-.28923-.6293-.54986-.95986-.78188.4916-.9747 1.10925-2.03945 1.889-2.69842-.85815.34644-1.70678 1.38046-2.2079 2.48547-.25532-.1621-.5149-.30724-.77658-.43332.69924-1.49276 2.32338-2.73868 4.11386-2.83615-1.1993 1.08806-.74903 3.25782-1.75975 4.544l.00105.00105zM15.9845 8.20693c-.13244-.2871-.2654-.76228-.2495-1.04197.22247-.0053.6505.0784.7183.0943-.0265.13136-.04026.41953-.04026.4566.04238-.0731.15997-.32418.20765-.42377.428.08157.99058.21824 1.32007.37186-.38776.2511-1.04515.5239-1.95628.54297zm-7.07214-1.9516c-.48483-.1739-.48483-.61095 0-.78484.48484-.1739 1.09417.04464 1.09417.3924 0 .34777-.60933.5663-1.09417.39242zm1.61647.1622c0-.96003-1.04643-1.5633-1.87905-1.0833-.83262.48002-.83262 1.68657 0 2.16658.83262.48003 1.87905-.12325 1.87905-1.08328zm2.7832-1.5749c-1.56482 1.586-.94716 3.5926-.37718 4.49844-.81048 1.3487-2.4039 2.2704-4.25476 2.68995 2.07758 0 3.3002-.53502 4.01108-1.0584.45345-.33478.69924-.66427.8253-.84755 3.0809.19917 7.95862 1.19188 8.43432 1.5129.1907.12925.38776.41424.41742.68758-2.3149-.3242-6.4881-.66534-7.58038-.72255.77552.1102 6.433 1.1813 7.41405 1.43238-.29878.4863-.97895.8306-2.00344.59118.5541.75433-.52125 1.6591-2.01932 1.16116.3295.74056-1.0033 1.40695-2.51938.63567.01907.74055-1.88052.82636-2.63062.0074.01484.09748.10383.28394.14197.36658-.24155 2.1634-2.014 3.50573-3.82885 3.50573-4.44335 0-8.3146-3.60955-8.3146-8.411 0-5.07582 3.75154-8.86443 8.27858-8.86443 2.59354 0 3.7653 2.04157 4.0058 2.81497z"/></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
partials/icons/social/buffer.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.784 18.24c.287.142.287.267 0 .374l-11.357 5.223c-.287.145-.57.145-.854 0L.213 18.614c-.284-.107-.284-.232 0-.375l2.722-1.23c.284-.14.57-.14.852 0l7.787 3.573c.285.14.57.14.854 0l7.787-3.574c.283-.14.568-.14.852 0l2.717 1.23zm0-6.454c.287.143.287.285 0 .426L12.427 17.44c-.287.104-.57.104-.854 0L.213 12.21c-.284-.143-.284-.284 0-.426l2.722-1.227c.284-.144.57-.144.852 0l7.787 3.57c.285.144.57.144.854 0l7.787-3.57c.283-.144.568-.144.852 0l2.717 1.226zM.214 5.76c-.285-.143-.285-.267 0-.375L11.574.16c.283-.14.57-.14.852 0l11.358 5.23c.287.107.287.232 0 .375l-11.357 5.223c-.287.143-.57.143-.854 0L.213 5.76z"/></svg>
|
After Width: | Height: | Size: 700 B |
1
partials/icons/social/buymeacoffee.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6.898 0L5.682 2.799H3.877v2.523h.695L5.277 9.8H4.172l1.46 8.23.938-.01L7.512 24h8.918l.062-.4.88-5.58.888.01 1.46-8.231h-1.056l.705-4.477h.756V2.8h-1.918L16.99 0H6.898zm.528.805h9.043l.771 1.78H6.652l.774-1.78zm-2.75 2.797H19.32v.92H4.676v-.92zm.453 6.998h13.635l-1.176 6.62-5.649-.06-5.636.06-1.174-6.62z"/></svg>
|
After Width: | Height: | Size: 395 B |
1
partials/icons/social/buzzfeed.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-4.148-.273l-.977-6.94-6.5 2.624 2.575 1.487-2.435 4.215L8.3 10.68l-4.153 7.19 2.327 1.346 2.812-4.868L13.5 16.78l3.777-6.54 2.575 1.487z"/></svg>
|
After Width: | Height: | Size: 299 B |
1
partials/icons/social/cashapp.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.59 3.47A5.1 5.1 0 0 0 20.54.42C19.23 0 18.04 0 15.62 0H8.36c-2.4 0-3.61 0-4.9.4A5.1 5.1 0 0 0 .41 3.46C0 4.76 0 5.96 0 8.36v7.27c0 2.41 0 3.6.4 4.9a5.1 5.1 0 0 0 3.05 3.05c1.3.41 2.5.41 4.9.41h7.28c2.41 0 3.61 0 4.9-.4a5.1 5.1 0 0 0 3.06-3.06c.41-1.3.41-2.5.41-4.9V8.38c0-2.41 0-3.61-.41-4.91zM17.42 8.1l-.93.93a.5.5 0 0 1-.67.01 5 5 0 0 0-3.22-1.18c-.97 0-1.94.32-1.94 1.21 0 .9 1.04 1.2 2.24 1.65 2.1.7 3.84 1.58 3.84 3.64 0 2.24-1.74 3.78-4.58 3.95l-.26 1.2a.49.49 0 0 1-.48.39H9.63l-.09-.01a.5.5 0 0 1-.38-.59l.28-1.27a6.54 6.54 0 0 1-2.88-1.57v-.01a.48.48 0 0 1 0-.68l1-.97a.49.49 0 0 1 .67 0c.91.86 2.13 1.34 3.39 1.32 1.3 0 2.17-.55 2.17-1.42 0-.87-.88-1.1-2.54-1.72-1.76-.63-3.43-1.52-3.43-3.6 0-2.42 2.01-3.6 4.39-3.71l.25-1.23a.48.48 0 0 1 .48-.38h1.78l.1.01c.26.06.43.31.37.57l-.27 1.37c.9.3 1.75.77 2.48 1.39l.02.02c.19.2.19.5 0 .68z"/></svg>
|
After Width: | Height: | Size: 938 B |
1
partials/icons/social/castro.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0zm-.002 13.991a2.052 2.052 0 1 1 0-4.105 2.052 2.052 0 0 1 0 4.105zm4.995 4.853l-2.012-2.791a5.084 5.084 0 1 0-5.982.012l-2.014 2.793A8.526 8.526 0 0 1 11.979 3.42a8.526 8.526 0 0 1 8.526 8.526 8.511 8.511 0 0 1-3.512 6.898z"/></svg>
|
After Width: | Height: | Size: 391 B |
1
partials/icons/social/codecov.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.007.48C5.391.485.005 5.831 0 12.399v.03l2.042 1.191.028-.019a5.821 5.821 0 0 1 3.308-1.02c.371 0 .734.034 1.086.1l-.036-.006a5.69 5.69 0 0 1 2.874 1.431l-.004-.003.35.326.198-.434c.192-.42.414-.814.66-1.173.099-.144.208-.29.332-.446l.205-.257-.252-.211a8.33 8.33 0 0 0-3.836-1.807l-.052-.008a8.566 8.566 0 0 0-4.081.251l.061-.016c.971-4.257 4.714-7.224 9.133-7.227a9.31 9.31 0 0 1 6.601 2.713 9.197 9.197 0 0 1 2.508 4.499 8.386 8.386 0 0 0-2.498-.379h-.154c-.356.006-.7.033-1.037.078l.045-.005-.042.006a8.104 8.104 0 0 0-.39.06c-.057.01-.114.022-.17.033a8.103 8.103 0 0 0-.392.089l-.138.035a9.21 9.21 0 0 0-.483.144l-.029.01c-.355.12-.709.268-1.051.439l-.027.014c-.152.076-.305.16-.469.256l-.036.022a8.217 8.217 0 0 0-2.108 1.801l-.011.013-.075.092a8.346 8.346 0 0 0-.378.503c-.088.13-.177.269-.288.452l-.06.104a8.986 8.986 0 0 0-.234.432l-.016.029c-.17.341-.317.698-.44 1.063l-.017.053a8.053 8.053 0 0 0-.411 2.717v-.007l.001.112c.006.158.013.295.023.431l-.002-.037a11.677 11.677 0 0 0 .042.412l.005.042.013.103c.018.127.038.252.062.378.241 1.266.845 2.532 1.745 3.66l.041.051.042-.05c.359-.424 1.249-1.77 1.325-2.577l.001-.015-.007-.013a5.56 5.56 0 0 1-.64-2.595v-.001c0-3.016 2.371-5.521 5.397-5.702l.199-.007a5.93 5.93 0 0 1 3.47 1.025l.028.019 2.041-1.187v-.03a11.771 11.771 0 0 0-3.511-8.424A11.963 11.963 0 0 0 12.008.48z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
partials/icons/social/codeigniter.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.49 24c-1.54-.68-2.586-2.146-2.723-3.824.09-1.727 1.002-3.305 2.45-4.246-.238.58-.18 1.24.15 1.77.376.525 1.022.777 1.655.646.902-.254 1.43-1.19 1.176-2.092-.09-.316-.27-.602-.516-.818-1.02-.83-1.532-2.133-1.35-3.436.175-.69.557-1.314 1.096-1.785-.405 1.08.737 2.146 1.504 2.67 1.36.816 2.67 1.713 3.924 2.686 1.37 1.08 2.117 2.77 2 4.5-.308 1.84-1.61 3.36-3.385 3.93 3.55-.79 7.21-3.61 7.28-7.61-.07-3.2-1.98-6.072-4.9-7.38h-.13c.065.157.096.326.09.496.01-.11.01-.22 0-.33.016.13.016.26 0 .39-.222.91-1.14 1.47-2.052 1.248-.364-.09-.69-.295-.924-.59-1.17-1.5 0-3.207.196-4.857.12-2.11-.844-4.127-2.554-5.36.856 1.427-.284 3.3-1.113 4.366-.83 1.066-2.03 1.86-3.008 2.79-1.054.98-2.02 2.058-2.887 3.21-1.874 2.29-2.61 5.31-2 8.205.836 2.79 3.155 4.886 6.015 5.43H8.5z"/></svg>
|
After Width: | Height: | Size: 857 B |
1
partials/icons/social/codepen.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M24 8.182l-.018-.087-.017-.05c-.01-.024-.018-.05-.03-.075-.003-.018-.015-.034-.02-.05l-.035-.067-.03-.05-.044-.06-.046-.045-.06-.045-.046-.03-.06-.044-.044-.04-.015-.02L12.58.19c-.347-.232-.796-.232-1.142 0L.453 7.502l-.015.015-.044.035-.06.05-.038.04-.05.056-.037.045-.05.06c-.02.017-.03.03-.03.046l-.05.06-.02.06c-.02.01-.02.04-.03.07l-.01.05C0 8.12 0 8.15 0 8.18v7.497c0 .044.003.09.01.135l.01.046c.005.03.01.06.02.086l.015.05c.01.027.016.053.027.075l.022.05c0 .01.015.04.03.06l.03.04c.015.01.03.04.045.06l.03.04.04.04c.01.013.01.03.03.03l.06.042.04.03.01.014 10.97 7.33c.164.12.375.163.57.163s.39-.06.57-.18l10.99-7.28.014-.01.046-.037.06-.043.048-.036.052-.058.033-.045.04-.06.03-.05.03-.07.016-.052.03-.077.015-.045.03-.08v-7.5c0-.05 0-.095-.016-.14l-.014-.045.044.003zm-11.99 6.28l-3.65-2.44 3.65-2.442 3.65 2.44-3.65 2.44zm-1.034-6.674l-4.473 2.99L2.89 8.362l8.086-5.39V7.79zm-6.33 4.233l-2.582 1.73V10.3l2.582 1.726zm1.857 1.25l4.473 2.99v4.82L2.89 15.69l3.618-2.417v-.004zm6.537 2.99l4.474-2.98 3.613 2.42-8.087 5.39v-4.82zm6.33-4.23l2.583-1.72v3.456l-2.583-1.73zm-1.855-1.24L13.042 7.8V2.97l8.085 5.39-3.612 2.415v.003z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
partials/icons/social/codewars.hbs
Normal file
After Width: | Height: | Size: 11 KiB |
1
partials/icons/social/dailymotion.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.068 11.313c-1.754 0-3.104 1.427-3.104 3.11 0 1.753 1.35 3.085 3.255 3.085l-.016.002c1.59 0 2.925-1.31 2.925-3.04 0-1.8-1.336-3.157-3.062-3.157zM0 0v24h24V0H0zm20.693 20.807h-3.576v-1.41c-1.1 1.08-2.223 1.47-3.715 1.47-1.522 0-2.832-.495-3.93-1.485-1.448-1.275-2.198-2.97-2.198-4.936 0-1.8.7-3.414 2.01-4.674 1.17-1.146 2.595-1.73 4.185-1.73 1.52 0 2.69.513 3.53 1.59V4.157l3.693-.765V3.39l.002.003h-.002v17.414z"/></svg>
|
After Width: | Height: | Size: 504 B |
1
partials/icons/social/debian.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.88 12.68c-.4 0 .08.2.6.28.14-.1.27-.22.39-.33a3 3 0 0 1-.99.05M16.02 12.15c.23-.33.4-.69.47-1.06-.06.27-.2.5-.33.73-.75.47-.07-.27 0-.56-.8 1.01-.11.6-.14.89M16.8 10.1c.05-.72-.14-.5-.2-.22.07.04.13.5.2.22M12.38.31c.2.04.45.07.42.12.23-.05.28-.1-.43-.12M12.8.43l-.15.03.14-.01V.43M19.42 10.37c.02.64-.2.95-.38 1.5l-.35.18c-.28.54.03.35-.17.78-.44.39-1.34 1.22-1.62 1.3-.2 0 .14-.25.19-.34-.59.4-.48.6-1.37.85l-.03-.06c-2.22 1.04-5.3-1.02-5.25-3.84-.03.17-.07.13-.12.2a3.55 3.55 0 0 1 2-3.5 3.36 3.36 0 0 1 3.73.48 3.34 3.34 0 0 0-2.72-1.3c-1.18.01-2.28.76-2.65 1.57-.6.38-.67 1.47-.93 1.66-.36 2.6.66 3.72 2.38 5.04.27.19.08.21.12.35a4.7 4.7 0 0 1-1.53-1.16c.23.33.47.66.8.91-.55-.18-1.27-1.3-1.48-1.35.93 1.66 3.78 2.92 5.26 2.3a6.2 6.2 0 0 1-2.33-.28c-.33-.16-.77-.51-.7-.57a5.8 5.8 0 0 0 5.9-.84c.44-.35.93-.94 1.07-.95-.2.32.04.16-.12.44.44-.72-.2-.3.46-1.24l.24.33c-.09-.6.74-1.32.66-2.26.19-.3.2.3 0 .97.29-.74.08-.85.15-1.46.08.2.18.42.23.63-.18-.7.2-1.2.28-1.6-.09-.05-.28.3-.32-.53 0-.37.1-.2.14-.28-.08-.05-.26-.32-.38-.86.08-.13.22.33.34.34-.08-.42-.2-.75-.2-1.08-.34-.68-.12.1-.4-.3-.34-1.09.3-.25.34-.74.54.77.84 1.96.98 2.46-.1-.6-.28-1.2-.49-1.76.16.07-.26-1.24.21-.37A7.82 7.82 0 0 0 17.7 1.6c.18.17.42.39.33.42-.75-.45-.62-.48-.73-.67-.61-.25-.65.02-1.06 0C15.08.73 14.86.8 13.8.4l.05.23c-.77-.25-.9.1-1.73 0-.05-.04.27-.14.53-.18-.74.1-.7-.14-1.43.03.17-.13.36-.21.55-.32-.6.04-1.44.35-1.18.07C9.6.68 7.85 1.3 6.87 2.22L6.84 2c-.45.54-1.96 1.61-2.08 2.31l-.13.03c-.23.4-.38.85-.57 1.26-.3.52-.45.2-.4.28-.6 1.22-.9 2.25-1.16 3.1.18.27 0 1.65.07 2.76-.3 5.46 3.84 10.77 8.36 12 .67.23 1.65.23 2.49.25-.99-.28-1.12-.15-2.08-.49-.7-.32-.85-.7-1.34-1.13l.2.35c-.97-.34-.57-.42-1.36-.67l.21-.27c-.31-.03-.83-.53-.97-.81l-.34.01c-.41-.5-.63-.87-.61-1.16l-.11.2c-.13-.21-1.52-1.9-.8-1.51-.13-.12-.31-.2-.5-.55l.14-.17c-.35-.44-.64-1.02-.62-1.2.2.24.32.3.45.33-.88-2.17-.93-.12-1.6-2.2l.15-.02c-.1-.16-.18-.34-.26-.51l.06-.6c-.63-.74-.18-3.1-.09-4.4.07-.54.53-1.1.88-1.98l-.21-.04c.4-.71 2.34-2.87 3.24-2.76.43-.55-.09 0-.18-.14.96-.99 1.26-.7 1.9-.88.7-.4-.6.16-.27-.15 1.2-.3.85-.7 2.42-.85.16.1-.39.14-.52.26 1-.49 3.15-.37 4.56.27 1.63.77 3.46 3.01 3.53 5.13l.08.02c-.04.85.13 1.82-.17 2.71l.2-.42M9.54 13.23l-.05.28c.26.35.47.73.8 1.01-.24-.47-.42-.66-.75-1.3M10.16 13.2c-.14-.15-.22-.34-.31-.52.08.32.26.6.43.88l-.12-.36M21.1 10.82l-.07.15c-.1.76-.34 1.51-.69 2.21.4-.73.65-1.54.75-2.36M12.45.12c.27-.1.66-.05.95-.12-.37.03-.74.05-1.1.1l.15.02M3.01 5.14c.07.57-.43.8.11.42.3-.66-.11-.18-.1-.42M2.38 7.8c.12-.39.15-.62.2-.84-.35.44-.17.53-.2.83"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
partials/icons/social/deezer.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.717 18.695h4.375V17.37h-4.377v1.325h.002zm-9.81 0H9.28V17.37H4.906v1.325h.004zm-4.907 0h4.375V17.37H0v1.325zm9.81 0h4.38V17.37H9.81v1.325zm9.815 0H24V17.37h-4.375v1.325zm0-1.724H24v-1.32h-4.375v1.34-.01zm-9.814 0h4.39v-1.32H9.81v1.34-.01zm-9.81 0h4.38v-1.32H0v1.34-.01zm4.91 0h4.38v-1.32H4.91v1.34l.002-.01zm9.83 0h4.38v-1.32h-4.4v1.34l.017-.01zm0-1.72h4.38v-1.32h-4.4v1.33h.017zm-9.805 0h4.36v-1.32H4.91v1.33h.016zm-4.906 0h4.36v-1.32H0v1.33h.016zm9.81 0h4.38v-1.32h-4.4v1.33h.016zm9.825 0H24v-1.32h-4.375v1.33h.027zm0-1.72H24V12.2h-4.375v1.326h.027zm-9.81 0h4.363V12.2h-4.4v1.326h.033zm-9.81 0H4.4V12.2H0v1.326h.03zm14.73 0h4.38V12.2h-4.43v1.326h.044zm0-1.72h4.38v-1.33h-4.43v1.32h.044zm-14.73 0H4.4v-1.32H0v1.32h.03zm9.81 0h4.38v-1.32H9.81v1.32h.032zm9.81 0H24v-1.33h-4.375v1.328l.027-.002zM9.81 10.08h4.38V8.754H9.81v1.326zm9.815-.002H24V8.753h-4.375v1.325zM9.81 8.355h4.38V7.028H9.81v1.327zm9.815 0H24V7.028h-4.375v1.327zm0-1.725H24V5.304h-4.375V6.63z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
partials/icons/social/delicious.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 12H0v12h12V12zM24 0H12v12h12V0z"/></svg>
|
After Width: | Height: | Size: 124 B |
1
partials/icons/social/deviantart.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.207 4.794l.23-.43V0H15.07l-.436.44-2.058 3.925-.646.436H4.58v5.993h4.04l.36.436-4.175 7.98-.24.43V24H8.93l.436-.44 2.07-3.925.644-.436h7.35v-5.993h-4.05l-.36-.438 4.186-7.977z"/></svg>
|
After Width: | Height: | Size: 268 B |
1
partials/icons/social/diaspora.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15.26 21.896l-2.332-3.256c-.622-.87-1.127-1.547-1.154-1.547s-1.006 1.314-2.316 3.113C8.21 21.92 7.178 23.32 7.163 23.32c-.033 0-4.498-3.144-4.51-3.177-.006-.016 1.005-1.498 2.242-3.293 1.24-1.795 2.254-3.29 2.254-3.326 0-.055-.408-.193-3.557-1.245L0 11.08c-.03-.018.156-.64.793-2.65.46-1.446.844-2.64.855-2.655.014-.016 1.71.524 3.772 1.205 2.063.68 3.765 1.234 3.788 1.234.022 0 .046-.03.053-.07.01-.03.03-1.786.04-3.9.02-2.1.04-3.84.05-3.87.02-.03.6-.03 2.73-.03 1.484 0 2.713.015 2.733.03.025.016.065 1.186.136 3.78.11 4.275.11 4.335.18 4.335.025 0 1.66-.54 3.63-1.22 1.973-.66 3.592-1.2 3.605-1.186.03.044 1.65 5.31 1.635 5.325-.017.016-1.667.585-3.66 1.26-2.76.93-3.647 1.245-3.647 1.29-.014.03.93 1.455 2.146 3.21 1.184 1.74 2.143 3.165 2.143 3.18-.015.046-4.44 3.302-4.483 3.302-.015 0-.585-.766-1.245-1.695l.005-.067z"/></svg>
|
After Width: | Height: | Size: 915 B |
1
partials/icons/social/digg.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17.76 8.16v8.16h3.84v.96h-3.84v1.92H24V8.16h-6.24zm-7.2 0v8.16h3.84v.96h-3.84v1.92h6.24V8.16h-6.24zM3.84 4.8v3.36H0v8.16h6.24V4.8h-2.4zM9.6 8.16H7.2v8.16h2.4V8.16zm12 6.24h-1.44v-4.32h1.44v4.32zm-17.76 0H2.4v-4.32h1.44v4.32zm10.56 0h-1.44v-4.32h1.44v4.32zM9.6 4.8H7.2v2.4h2.4V4.8z"/></svg>
|
After Width: | Height: | Size: 370 B |
1
partials/icons/social/discord.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.222 0c1.406 0 2.54 1.137 2.607 2.475V24l-2.677-2.273-1.47-1.338-1.604-1.398.67 2.205H3.71c-1.402 0-2.54-1.065-2.54-2.476V2.48C1.17 1.142 2.31.003 3.715.003h16.5L20.222 0zm-6.118 5.683h-.03l-.202.2c2.073.6 3.076 1.537 3.076 1.537-1.336-.668-2.54-1.002-3.744-1.137-.87-.135-1.74-.064-2.475 0h-.2c-.47 0-1.47.2-2.81.735-.467.203-.735.336-.735.336s1.002-1.002 3.21-1.537l-.135-.135s-1.672-.064-3.477 1.27c0 0-1.805 3.144-1.805 7.02 0 0 1 1.74 3.743 1.806 0 0 .4-.533.805-1.002-1.54-.468-2.14-1.404-2.14-1.404s.134.066.335.2h.06c.03 0 .044.015.06.03v.006c.016.016.03.03.06.03.33.136.66.27.93.4.466.202 1.065.403 1.8.536.93.135 1.996.2 3.21 0 .6-.135 1.2-.267 1.8-.535.39-.2.87-.4 1.397-.737 0 0-.6.936-2.205 1.404.33.466.795 1 .795 1 2.744-.06 3.81-1.8 3.87-1.726 0-3.87-1.815-7.02-1.815-7.02-1.635-1.214-3.165-1.26-3.435-1.26l.056-.02zm.168 4.413c.703 0 1.27.6 1.27 1.335 0 .74-.57 1.34-1.27 1.34-.7 0-1.27-.6-1.27-1.334.002-.74.573-1.338 1.27-1.338zm-4.543 0c.7 0 1.266.6 1.266 1.335 0 .74-.57 1.34-1.27 1.34-.7 0-1.27-.6-1.27-1.334 0-.74.57-1.338 1.27-1.338z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
partials/icons/social/discourse.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.103 0C18.666 0 24 5.485 24 11.997c0 6.51-5.33 11.99-11.9 11.99L0 24V11.79C0 5.28 5.532 0 12.103 0zm.116 4.563c-2.593-.003-4.996 1.352-6.337 3.57-1.33 2.208-1.387 4.957-.148 7.22L4.4 19.61l4.794-1.074c2.745 1.225 5.965.676 8.136-1.39 2.17-2.054 2.86-5.228 1.737-7.997-1.135-2.778-3.84-4.59-6.84-4.585h-.008z"/></svg>
|
After Width: | Height: | Size: 399 B |
1
partials/icons/social/disqus.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.438 23.654c-2.853 0-5.46-1.04-7.476-2.766L0 21.568l1.917-4.733C1.25 15.36.875 13.725.875 12 .875 5.564 6.05.346 12.44.346 18.82.346 24 5.564 24 12c0 6.438-5.176 11.654-11.562 11.654zm6.315-11.687v-.033c0-3.363-2.373-5.76-6.462-5.76H7.877V17.83h4.35c4.12 0 6.525-2.5 6.525-5.863h.004zm-6.415 2.998h-1.29V9.04h1.29c1.897 0 3.157 1.08 3.157 2.945v.03c0 1.884-1.26 2.95-3.157 2.95z"/></svg>
|
After Width: | Height: | Size: 470 B |
1
partials/icons/social/django.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.146 0h3.924v18.165c-2.013.382-3.491.535-5.096.535-4.791 0-7.288-2.166-7.288-6.32 0-4.001 2.65-6.6 6.753-6.6.637 0 1.121.051 1.707.204V0zm0 9.143a3.894 3.894 0 0 0-1.325-.204c-1.988 0-3.134 1.223-3.134 3.364 0 2.09 1.096 3.236 3.109 3.236.433 0 .79-.025 1.35-.102V9.142zM21.314 6.06v9.097c0 3.134-.229 4.638-.917 5.937-.637 1.249-1.478 2.039-3.211 2.905l-3.644-1.733c1.733-.815 2.574-1.529 3.109-2.625.561-1.121.739-2.421.739-5.835V6.059h3.924zM17.39.021h3.924v4.026H17.39V.021z"/></svg>
|
After Width: | Height: | Size: 570 B |
1
partials/icons/social/dribbble.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/></svg>
|
After Width: | Height: | Size: 961 B |
1
partials/icons/social/dropbox.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 1.807-6 3.822 6 3.822 6.001-3.822zm12 0-6 3.822 6 3.822 6-3.822zm-18 11.467 6 3.822 6.001-3.822-6.001-3.822zm18-3.822-6 3.822 6 3.822 6-3.822zm-12 8.919 6.001 3.822 6-3.822-6-3.822z"/></svg>
|
After Width: | Height: | Size: 273 B |
1
partials/icons/social/dtube.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.6 5.5a9.91 9.91 0 0 0-3.88-4.04A11.18 11.18 0 0 0 13.08.04H.18l6.91 4h5.99c1.94 0 3.41.62 4.42 1.88C18.5 7.17 19 9 19 11.43v1.27c-.01 2.34-.53 4.14-1.55 5.4-1.02 1.26-2.5 1.89-4.42 1.89H6.86L0 23.95h13.13c2.09 0 3.97-.49 5.63-1.44 1.66-.95 2.95-2.3 3.87-4.02S24 14.79 24 12.56v-1.1c0-2.22-.47-4.2-1.4-5.96z"/><path d="M.13 3.96v16.1L14.07 12z"/></svg>
|
After Width: | Height: | Size: 435 B |
1
partials/icons/social/envato.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.4.197c-.74-.371-2.721-.247-5.195.62-4.207 2.968-7.674 7.175-8.044 14.109 0 .241-.493 0-.617-.126-1.114-2.104-1.61-4.455-.62-7.921.247-.247-.37-.617-.37-.494-.249.123-1.114 1.113-1.734 2.103-2.847 4.947-.99 11.511 3.961 14.231 4.947 2.721 11.382.988 14.231-4.086 3.342-5.814.369-17.322-1.612-18.436"/></svg>
|
After Width: | Height: | Size: 390 B |
1
partials/icons/social/etsy.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.564 2.445c0-.325.033-.52.59-.52h7.465c1.3 0 2.02 1.11 2.54 3.193l.42 1.666h1.27c.23-4.728.43-6.784.43-6.784s-3.196.36-5.09.36H6.64L1.526.196v1.37l1.725.326c1.21.24 1.5.496 1.6 1.606 0 0 .11 3.27.11 8.64 0 5.385-.09 8.61-.09 8.61 0 .973-.39 1.333-1.59 1.573l-1.722.33V24l5.13-.165h8.55c1.935 0 6.39.165 6.39.165.105-1.17.75-6.48.855-7.064h-1.2L20 19.846c-1.005 2.28-2.476 2.445-4.11 2.445h-4.906c-1.63 0-2.415-.64-2.415-2.05V12.8s3.62 0 4.79.096c.912.064 1.463.325 1.76 1.598l.39 1.695h1.41l-.09-4.278.192-4.305H15.63l-.45 1.89c-.283 1.244-.48 1.47-1.754 1.6-1.666.17-4.815.14-4.815.14V2.45h-.05z"/></svg>
|
After Width: | Height: | Size: 687 B |
1
partials/icons/social/evernote.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.692 5.445c0 .239-.02.637-.256.895-.257.24-.652.259-.888.259H4.022c-.73 0-1.165 0-1.46.04-.159.02-.356.1-.455.14-.04.019-.04 0-.02-.02L7.85.848c.02-.02.04-.02.02.02-.04.099-.118.298-.138.457-.04.298-.04.736-.04 1.472v2.647zm5.348 17.869c-.67-.438-1.026-1.015-1.164-1.373a2.924 2.924 0 0 1-.217-1.095 3.007 3.007 0 0 1 3-3.004c.493 0 .888.398.888.895a.88.88 0 0 1-.454.776c-.099.06-.237.1-.336.12-.098.02-.473.06-.65.218-.198.16-.356.418-.356.697 0 .298.118.577.316.776.355.358.829.557 1.342.557a2.436 2.436 0 0 0 2.427-2.447c0-1.214-.809-2.289-1.875-2.766-.158-.08-.414-.14-.651-.2a8.04 8.04 0 0 0-.592-.099c-.829-.1-2.901-.756-3.04-2.606 0 0-.611 2.785-1.835 3.541-.118.06-.276.12-.454.16-.177.04-.374.06-.434.06-1.993.119-4.105-.518-5.565-2.03 0 0-.987-.816-1.5-3.104-.118-.558-.355-1.553-.493-2.488-.06-.338-.08-.597-.099-.836 0-.975.592-1.631 1.342-1.73h4.026c.69 0 1.086-.18 1.342-.419.336-.318.415-.776.415-1.313v-4.08-.118C8.52.669 9.173.052 10.139.052h.474c.197 0 .434.02.651.04.158.02.296.06.533.12 1.204.298 1.46 1.532 1.46 1.532s2.27.398 3.415.597c1.085.199 3.77.378 4.282 3.104 1.204 6.487.474 12.775.415 12.775-.849 6.129-5.901 5.83-5.901 5.83a4.1 4.1 0 0 1-2.428-.736zm4.54-13.034c-.652-.06-1.204.2-1.402.697-.04.1-.079.219-.059.278.02.06.06.08.099.1.237.12.631.179 1.204.239.572.06.967.1 1.223.06.04 0 .08-.02.119-.08.04-.06.02-.18.02-.279-.06-.537-.553-.935-1.204-1.015z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
partials/icons/social/everplaces.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10.839 23.972C4.76 23.388 0 18.257 0 12.028c0-6.623 5.377-12 12-12s12 5.377 12 12c0 6.23-4.76 11.359-10.839 11.943v-7.046c2.22-.525 3.87-2.521 3.87-4.897 0-2.778-2.253-5.033-5.031-5.033S6.968 9.25 6.968 12.028c0 2.377 1.653 4.372 3.87 4.897l.001 7.047zm-.388-14.655c.642 0 1.162.521 1.162 1.162 0 .641-.521 1.162-1.162 1.162-.641 0-1.16-.521-1.16-1.162 0-.641.52-1.161 1.16-1.162z"/></svg>
|
After Width: | Height: | Size: 470 B |
1
partials/icons/social/facebook.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.9981 11.9991C23.9981 5.37216 18.626 0 11.9991 0C5.37216 0 0 5.37216 0 11.9991C0 17.9882 4.38789 22.9522 10.1242 23.8524V15.4676H7.07758V11.9991H10.1242V9.35553C10.1242 6.34826 11.9156 4.68714 14.6564 4.68714C15.9692 4.68714 17.3424 4.92149 17.3424 4.92149V7.87439H15.8294C14.3388 7.87439 13.8739 8.79933 13.8739 9.74824V11.9991H17.2018L16.6698 15.4676H13.8739V23.8524C19.6103 22.9522 23.9981 17.9882 23.9981 11.9991Z"/></svg>
|
After Width: | Height: | Size: 509 B |
1
partials/icons/social/feedly.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.396 21.932L.62 15.108c-.825-.824-.825-2.609 0-3.39l9.709-9.752c.781-.78 2.521-.78 3.297 0l9.756 9.753c.826.825.826 2.611 0 3.391l-6.779 6.824c-.411.41-1.053.686-1.695.686H9c-.596-.001-1.19-.276-1.604-.688zm6.184-2.656c.137-.138.137-.413 0-.55l-1.328-1.328c-.138-.15-.412-.15-.549 0l-1.329 1.319c-.138.134-.138.405 0 .54l1.054 1.005h1.099l1.065-1.02-.012.034zm0-5.633c.092-.09.092-.32 0-.412l-1.42-1.409c-.09-.091-.32-.091-.412 0l-4.121 4.124c-.139.15-.139.465 0 .601l.959.96h1.102l3.893-3.855v-.009zm0-5.587c.092-.091.137-.366 0-.458l-1.375-1.374c-.09-.104-.365-.104-.502 0l-6.914 6.915c-.094.09-.14.359-.049.449l1.1 1.05h1.053l6.687-6.582z"/></svg>
|
After Width: | Height: | Size: 732 B |
1
partials/icons/social/figma.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0zM4 20a4 4 0 0 1 4-4h4v4a4 4 0 1 1-8 0z"/><path d="M12 0v8h4a4 4 0 1 0 0-8h-4zM4 4a4 4 0 0 0 4 4h4V0H8a4 4 0 0 0-4 4zM4 12a4 4 0 0 0 4 4h4V8H8a4 4 0 0 0-4 4z"/></svg>
|
After Width: | Height: | Size: 280 B |
1
partials/icons/social/flickr.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 12c0 3.074 2.494 5.564 5.565 5.564 3.075 0 5.569-2.49 5.569-5.564S8.641 6.436 5.565 6.436C2.495 6.436 0 8.926 0 12zm12.866 0c0 3.074 2.493 5.564 5.567 5.564C21.496 17.564 24 15.074 24 12s-2.492-5.564-5.564-5.564c-3.075 0-5.57 2.49-5.57 5.564z"/></svg>
|
After Width: | Height: | Size: 334 B |
1
partials/icons/social/flipboard.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v24h24V0H0zm19.2 9.6h-4.8v4.8H9.6v4.8H4.8V4.8h14.4v4.8z"/></svg>
|
After Width: | Height: | Size: 148 B |
1
partials/icons/social/foursquare.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17.727 3.465l-.535 2.799c-.064.303-.445.623-.801.623H11.41c-.562 0-.963.391-.963.945v.614c0 .569.405.96.966.96h4.23c.395 0 .785.436.697.855l-.535 2.76c-.051.24-.314.63-.785.63h-3.457c-.63 0-.818.091-1.239.601-.42.524-4.206 5.069-4.206 5.069-.037.045-.074.029-.074-.015V3.42c0-.359.311-.78.776-.78h10.274c.375 0 .73.356.633.821v.004zm.451 10.98c.145-.578 1.746-8.784 2.281-11.385M18.486 0H5.683C3.918 0 3.4 1.328 3.4 2.164v20.34c0 .94.504 1.291.789 1.405.284.117 1.069.214 1.541-.328 0 0 6.044-7.014 6.146-7.117.165-.157.165-.157.315-.157h3.914c1.65 0 1.906-1.17 2.086-1.86.15-.569 1.754-8.774 2.279-11.385C20.875 1.08 20.365 0 18.49 0h-.004z"/></svg>
|
After Width: | Height: | Size: 731 B |
1
partials/icons/social/framer.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4 0h16v8h-8zM4 8h8l8 8H4zM4 16h8v8z"/></svg>
|
After Width: | Height: | Size: 125 B |
1
partials/icons/social/gatsby.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.001.007C5.326.007.007 5.326.007 12S5.326 23.995 12 23.995s11.994-5.319 11.994-11.994S18.676.007 12.001.007zM2.614 12.105l9.283 9.283c-5.111 0-9.283-4.172-9.283-9.283zm11.473 9.074L2.823 9.915C3.76 5.743 7.516 2.614 12 2.614a9.476 9.476 0 0 1 7.614 3.86L18.259 7.62a7.657 7.657 0 0 0-6.362-3.337A7.555 7.555 0 0 0 4.7 9.393l9.804 9.805c2.4-.835 4.276-2.92 4.798-5.424h-4.068v-1.773h6.154c0 4.485-3.129 8.24-7.301 9.178z"/></svg>
|
After Width: | Height: | Size: 511 B |
1
partials/icons/social/ghost.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9.604 19.199H.008V24h9.597v-4.801zm14.39 0h-9.591V24h9.591v-4.801zm.003-9.599H0v4.8h23.997V9.6zM24 0h-4.801v4.801H24V0zm-9.596 0H.008v4.801h14.396V0z"/></svg>
|
After Width: | Height: | Size: 239 B |
1
partials/icons/social/git.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187"/></svg>
|
After Width: | Height: | Size: 684 B |
1
partials/icons/social/github.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
|
After Width: | Height: | Size: 801 B |
1
partials/icons/social/gitlab.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4.844.904a1.007 1.007 0 00-.955.692l-2.53 7.783c0 .007-.005.012-.007.02L.07 13.335a1.437 1.437 0 00.522 1.607l11.072 8.045a.566.566 0 00.67-.004l11.074-8.04a1.436 1.436 0 00.522-1.61l-1.26-3.867a.547.547 0 00-.031-.104l-2.526-7.775a1.004 1.004 0 00-.957-.684.987.987 0 00-.949.69l-2.406 7.408H8.203l-2.41-7.408a.987.987 0 00-.943-.69h-.006zm-.006 1.42l2.174 6.678H2.674l2.164-6.678zm14.328 0l2.168 6.678h-4.342l2.174-6.678zm-10.594 7.81h6.862l-2.15 6.618L12 20.693 8.572 10.135zm-5.515.005h4.322l3.086 9.5-7.408-9.5zm13.568 0h4.326l-6.703 8.588-.709.914 2.959-9.108.127-.394zM2.1 10.762l6.978 8.947-7.818-5.682a.305.305 0 01-.112-.341l.952-2.924zm19.8 0l.952 2.922a.305.305 0 01-.11.341v.002l-7.82 5.68.025-.035 6.953-8.91Z"/></svg>
|
After Width: | Height: | Size: 813 B |
1
partials/icons/social/gmail.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M24 4.5v15c0 .85-.65 1.5-1.5 1.5H21V7.387l-9 6.463-9-6.463V21H1.5C.649 21 0 20.35 0 19.5v-15c0-.425.162-.8.431-1.068C.7 3.16 1.076 3 1.5 3H2l10 7.25L22 3h.5c.425 0 .8.162 1.069.432.27.268.431.643.431 1.068z"/></svg>
|
After Width: | Height: | Size: 295 B |
1
partials/icons/social/gnusocial.hbs
Normal file
@ -0,0 +1 @@
|
||||
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4.217 0C2.474 0 1.06 1.413 1.06 3.156V15.77c0 1.744 1.414 3.158 3.157 3.158h9.367C13.567 22.498 8.756 24 8.756 24s8.138-.038 9.305-5.072h1.72c1.744 0 3.157-1.414 3.157-3.157V3.157C22.938 1.413 21.524 0 19.782 0H4.218zm4.527 2.53c.073-.013.132-.003.174.034.335.3-.556.593-.484 2.063.032.646-.16 1.146 1.076 1.146.826 0 .483-.734 1.523-.734.656 0 .86.435.934.767.072-.33.274-.768.93-.768 1.04 0 .7.733 1.525.733 1.237 0 1.044-.5 1.076-1.146.072-1.47-.82-1.764-.484-2.063.042-.037.1-.042.172-.02.5.143 1.607 1.558 1.638 2.155.038.71.04 1.825-1.015 2.407 1.19 1.167 1.352 2.72 1.352 2.72l-2.045-.034s-.464-2.118-2.94-2.01c-2.474.108-2.796.538-2.796 3.156 0 2.617 1.147 3.517 2.905 3.585 2.76.108 2.51-1.433 2.51-1.433l-1.29.072-.718-1.937h4.41c0 2.116-.897 5.414-5.092 5.2-4.196-.216-5.128-3.515-5.164-5.74-.018-1.225.188-2.602 1.2-3.574-1.052-.58-1.033-1.7-1.033-2.414 0-.88 1.13-2.084 1.637-2.17z"/></svg>
|
After Width: | Height: | Size: 984 B |