Skip to content

Commit

Permalink
Update from Shopify for theme shopify-tailwind-starter-base/feaure/gabby
Browse files Browse the repository at this point in the history
Committed from shop: christy-unite
  • Loading branch information
shopify[bot] authored Aug 9, 2024
1 parent ace75b7 commit 69d290a
Show file tree
Hide file tree
Showing 13 changed files with 1,087 additions and 0 deletions.
377 changes: 377 additions & 0 deletions layout/theme.shogun.landing.liquid

Large diffs are not rendered by default.

545 changes: 545 additions & 0 deletions sections/main-bloggle-article.liquid

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions sections/shogun-above.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% if product %}
{% assign content = product %}
{% elsif collection %}
{% assign content = collection %}
{% endif %}
{{content.metafields.shogun.above}}

Check notice on line 11 in sections/shogun-above.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-above.liquid#L11

[SpaceInsideBraces] Space missing after '{{'

Check notice on line 11 in sections/shogun-above.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-above.liquid#L11

[SpaceInsideBraces] Space missing before '}}'
{% schema %}

Check notice on line 12 in sections/shogun-above.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-above.liquid#L12

[SchemaJsonFormat] JSON formatting could be improved
{
"name": "Shogun Section Above"
}
{% endschema %}
16 changes: 16 additions & 0 deletions sections/shogun-below.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% if product %}
{% assign content = product %}
{% elsif collection %}
{% assign content = collection %}
{% endif %}
{{content.metafields.shogun.below}}

Check notice on line 11 in sections/shogun-below.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-below.liquid#L11

[SpaceInsideBraces] Space missing after '{{'

Check notice on line 11 in sections/shogun-below.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-below.liquid#L11

[SpaceInsideBraces] Space missing before '}}'
{% schema %}

Check notice on line 12 in sections/shogun-below.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-below.liquid#L12

[SchemaJsonFormat] JSON formatting could be improved
{
"name": "Shogun Section Below"
}
{% endschema %}
20 changes: 20 additions & 0 deletions sections/shogun-helper.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% if article %}

Check warning on line 6 in sections/shogun-helper.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-helper.liquid#L6

[LiquidTag] Use {% liquid ... %} to write multiple tags
{% assign content = article %}
{% elsif page %}
{% assign content = page %}
{% elsif product %}
{% assign content = product %}
{% elsif collection %}
{% assign content = collection %}
{% endif %}
{% render 'shogun-products', content: content %}
{% schema %}

Check notice on line 16 in sections/shogun-helper.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-helper.liquid#L16

[SchemaJsonFormat] JSON formatting could be improved
{
"name": "Shogun Helper"
}
{% endschema %}
20 changes: 20 additions & 0 deletions sections/shogun-optimizer.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% if article %}

Check warning on line 6 in sections/shogun-optimizer.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-optimizer.liquid#L6

[LiquidTag] Use {% liquid ... %} to write multiple tags
{% assign content = article %}
{% elsif page %}
{% assign content = page %}
{% elsif product %}
{% assign content = product %}
{% elsif collection %}
{% assign content = collection %}
{% endif %}
{{content.metafields.shogun.optimizer}}

Check notice on line 15 in sections/shogun-optimizer.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-optimizer.liquid#L15

[SpaceInsideBraces] Space missing after '{{'

Check notice on line 15 in sections/shogun-optimizer.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-optimizer.liquid#L15

[SpaceInsideBraces] Space missing before '}}'
{% schema %}

Check notice on line 16 in sections/shogun-optimizer.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

sections/shogun-optimizer.liquid#L16

[SchemaJsonFormat] JSON formatting could be improved
{
"name": "Shogun Optimizer"
}
{% endschema %}
33 changes: 33 additions & 0 deletions snippets/shogun-products.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% assign handles = content.metafields.shogun.products | split: "," | slice: 0, 20 %}
{% if handles.size > 0 %}
<script type="text/javascript">
window.__shgProducts = window.__shgProducts || {};
{% for handle in handles %}
{% assign currentProduct = all_products[handle] %}
{% if currentProduct != blank %}
window.__shgProducts["{{handle}}"] = {{currentProduct | json }};

Check notice on line 13 in snippets/shogun-products.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

snippets/shogun-products.liquid#L13

[SpaceInsideBraces] Space missing after '{{'

Check notice on line 13 in snippets/shogun-products.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

snippets/shogun-products.liquid#L13

[SpaceInsideBraces] Space missing before '}}'

Check notice on line 13 in snippets/shogun-products.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

snippets/shogun-products.liquid#L13

[SpaceInsideBraces] Space missing after '{{'
{% endif %}
{% endfor %}
</script>
{% endif %}

{% if cart and cart.currency and cart.currency.iso_code %}
<script type="text/javascript">
{% if 'shopify' == 'shopify' %}
window.__shgMoneyFormat = window.__shgMoneyFormat || {"USD":{"currency":"USD","currency_symbol":"$","currency_symbol_location":"left","decimal_places":2,"decimal_separator":".","thousands_separator":","}};
{% endif %}
window.__shgCurrentCurrencyCode = window.__shgCurrentCurrencyCode || {
currency: "{{ cart.currency.iso_code }}",
currency_symbol: "{{ cart.currency.symbol }}",
decimal_separator: ".",
thousands_separator: ",",
decimal_places: 2,
currency_symbol_location: "left"
};
</script>
{% endif %}
21 changes: 21 additions & 0 deletions templates/article.bloggle-custom.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* ------------------------------------------------------------
* IMPORTANT: The contents of this file are auto-generated.
*
* This file may be updated by the Shopify admin theme editor
* or related systems. Please exercise caution as any changes
* made to this file may be overwritten.
* ------------------------------------------------------------
*/
{
"sections": {
"blog": {
"type": "main-bloggle-article",
"settings": {
}
}
},
"order": [
"blog"
]
}
7 changes: 7 additions & 0 deletions templates/article.shogun.custom.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% render 'shogun-products', content: page %}
{{ article.content }}
6 changes: 6 additions & 0 deletions templates/collection.shogun.custom.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{{ collection.description }}
9 changes: 9 additions & 0 deletions templates/page.shogun.default.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% render 'shogun-products', content: page %}
<div class="shg-clearfix"></div>
{{ page.content }}
{{ page.metafields.shogun.optimizer }}
9 changes: 9 additions & 0 deletions templates/page.shogun.landing.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% render 'shogun-products', content: page %}
{% layout 'theme.shogun.landing' %}
{{ page.content }}
{{ page.metafields.shogun.optimizer }}
8 changes: 8 additions & 0 deletions templates/product.shogun.custom.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% comment %}
Auto-generated by Shogun.
This file can be re-written at any time.
{% endcomment %}

{% render 'shogun-products', content: product %}
{{product.metafields.shogun.main}}

Check notice on line 7 in templates/product.shogun.custom.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

templates/product.shogun.custom.liquid#L7

[SpaceInsideBraces] Space missing after '{{'

Check notice on line 7 in templates/product.shogun.custom.liquid

View workflow job for this annotation

GitHub Actions / Theme Check Report

templates/product.shogun.custom.liquid#L7

[SpaceInsideBraces] Space missing before '}}'
{{ product.metafields.shogun.optimizer }}

0 comments on commit 69d290a

Please sign in to comment.