Skip to content

Commit

Permalink
merge and resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoninja committed Mar 17, 2021
2 parents 82d30be + f99297e commit bd4e94e
Show file tree
Hide file tree
Showing 25 changed files with 38 additions and 40 deletions.
2 changes: 1 addition & 1 deletion amp.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html amp lang="{{@site.lang}}">
<html amp lang="{{@site.locale}}">
<head>
<meta charset="utf-8">
<title>{{meta_title}}</title>
Expand Down
2 changes: 1 addition & 1 deletion assets/scripts/kusi-doc-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions assets/scripts/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/scripts/pagination.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions assets/scripts/prismjs.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/scripts/search.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/styles/amp.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions assets/styles/main.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
✎ @GodoFredoNinja
✈ Lima - Perú
-->
<html lang="{{@site.lang}}" class="light">
<html lang="{{@site.locale}}" class="light">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8" />
Expand Down Expand Up @@ -80,7 +80,7 @@
{{ghost_foot}}

{{!-- Notifications ./partials/notifications.hbs --}}
{{#if @labs.members}}{{> "notifications"}}{{/if}}
{{> "notifications"}}

{{!-- script --}}
{{{block "scripts"}}}
Expand Down
2 changes: 1 addition & 1 deletion error-404.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="container mx-auto">
<div class="max-w-1100 mx-auto pb-8">
<div class="row">
{{#foreach recents visibility="all"}}
{{#foreach recents}}
<div class="col s12 m6 l4">
{{> "story/story-card-small"}}
</div>
Expand Down
2 changes: 1 addition & 1 deletion godo-podcast.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

<div class="feed-entry-content py-12 bg-gray-100 px-4">
<div class="mx-auto max-w-4xl feed-entry-wrap">
{{#foreach posts visibility="all"}} {{>"story/story-podcast"}} {{/foreach}}
{{#foreach posts}} {{>"story/story-podcast"}} {{/foreach}}
</div>
</div>
4 changes: 2 additions & 2 deletions godo-template-featured.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

{{!-- Featured Story --}}
{{#get "posts" limit="1" filter="featured:true" as |godo_featured_post| }}
{{#if godo_featured_post}} {{#foreach godo_featured_post visibility="all"}}{{> "story/story-featured"}} {{/foreach}}{{/if}}
{{#if godo_featured_post}} {{#foreach godo_featured_post}}{{> "story/story-featured"}} {{/foreach}}{{/if}}
{{/get}}

<div class="site-post feed-entry-content container mx-auto pt-10">
<div class="feed-entry-wrap max-w-1100 mx-auto">
<div class="row">
{{#foreach posts visibility="all"}}
{{#foreach posts}}
{{#has number="1"}}
<div class="col s12 m6 l12 ss1">{{> "story/story-grid"}}</div>
{{else has number="5, 6, 17, 18"}}
Expand Down
2 changes: 1 addition & 1 deletion godo-template-grid.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{{!-- Featured Story --}}
{{#get "posts" limit="1" filter="featured:true" as |godo_featured_post| }}
{{#if godo_featured_post}} {{#foreach godo_featured_post visibility="all"}}{{> "story/story-featured"}} {{/foreach}}{{/if}}
{{#if godo_featured_post}} {{#foreach godo_featured_post}}{{> "story/story-featured"}} {{/foreach}}{{/if}}
{{/get}}

{{> "loop"}}
10 changes: 5 additions & 5 deletions godo-template-medium.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="site-post feed-entry-content container mx-auto pt-12">
<div class="feed-entry-wrap max-w-1100 mx-auto">
<div class="row">
{{#foreach posts visibility="all"}}
{{#foreach posts}}
{{#has number="7, 8"}}
<div class="col s12 m6 ss2">{{> "story/story-grid"}}</div>
{{else}}
Expand All @@ -26,22 +26,22 @@
<div class="homeHero-container container mx-auto flex flex-col items-stretch md:flex-row md:flex-wrap lg: lg:flex-nowrap">

{{!-- Fisrt Large Post - partials/home/home-first-post.hbs --}}
{{#foreach posts limit="1" visibility="all"}} {{> "home/home-first-post"}} {{/foreach}}
{{#foreach posts limit="1"}} {{> "home/home-first-post"}} {{/foreach}}

{{!-- Post small - partials/home/home-small-post.hbs --}}
<div class="homeHero-smallCardWrap flex flex-col md:w-3/6 lg:w-full">
{{#foreach posts from="2" to="4" visibility="all"}} {{> "home/home-small-post"}} {{/foreach}}
{{#foreach posts from="2" to="4"}} {{> "home/home-small-post"}} {{/foreach}}
</div>

{{!-- Post medium - partials/home/home-medium-post.hbs --}}
{{#foreach posts from="5" to="5" visibility="all"}} {{> "home/home-medium-post"}} {{/foreach}}
{{#foreach posts from="5" to="5"}} {{> "home/home-medium-post"}} {{/foreach}}
</div>
</section>

<div class="site-post feed-entry-content container mx-auto pt-12">
<div class="feed-entry-wrap max-w-1100 mx-auto">
<div class="row">
{{#foreach posts from="6" to="14" visibility="all"}}
{{#foreach posts from="6" to="14"}}
{{#has number="12, 13"}}
<div class="col s12 m6 ss2">{{> "story/story-grid" }}</div>
{{else has number="14"}}
Expand Down
2 changes: 1 addition & 1 deletion godo-template-sidebar.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="col s12 l7">
<div class="feed-entry-content">
<div class="feed-entry-wrap slist">
{{#foreach posts visibility="all"}}
{{#foreach posts}}
{{!-- Story - partials/story/story-grid.hbs --}}
{{>"story/story-post"}}
{{/foreach}}
Expand Down
2 changes: 1 addition & 1 deletion index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="site-post feed-entry-content container mx-auto pt-10">
<div class="feed-entry-wrap max-w-1100 mx-auto">
<div class="row">
{{#foreach posts visibility="all"}}
{{#foreach posts}}
{{#has number="1"}}
<div class="col s12 m6 l12 ss1">{{> "story/story-grid"}}</div>
{{else has number="5, 6, 17, 18"}}
Expand Down
2 changes: 1 addition & 1 deletion members/account.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<div class=" col s12 m6 pb-5 subscriber-detail">
<label class="uppercase text-sm font-semibold block pb-1">Your plan</label>
<span class="subscriber-detail-content text-gray-700 text-sm">{{plan.currency_symbol}}{{price plan.amount}}/{{plan.interval}}</span>
<span class="subscriber-detail-content text-gray-700 text-sm">{{price plan}} / {{plan.interval}}</span>
</div>

<div class="col s12 m6 pb-5 subscriber-detail">
Expand Down
4 changes: 2 additions & 2 deletions members/membership.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<h3 class="text-base font-semibold uppercase mb-2 text-gray-800 tracking-wide">Yearly</h3>
<p class="text-gray-500">1 simple payment instead of 12, save on bank fees </p>
<div class="text-44 font-bold my-8 leading-none text-primary">
<span>{{@price.currency_symbol}}{{@price.yearly}}</span>
<span>{{price currency=@price.currency}} {{@price.yearly}}</span>
<span class="text-lg font-medium">/ year</span>
</div>

Expand Down Expand Up @@ -85,7 +85,7 @@
<h3 class="text-base font-semibold uppercase mb-2 text-gray-800 tracking-wide">Monthly</h3>
<p class="text-gray-500">Get access to everything and lock in early adopter pricing for life</p>
<div class="text-44 font-bold my-8 leading-none">
<span>{{@price.currency_symbol}}{{@price.monthly}}</span>
<span>{{price currency=@price.currency}} {{@price.monthly}}</span>
<span class="text-lg text-gray-500 font-medium">/ month</span>
</div>

Expand Down
Loading

0 comments on commit bd4e94e

Please sign in to comment.