Skip to content

Instantly share code, notes, and snippets.

@zakirsajib
Last active December 7, 2022 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakirsajib/996e6722900552ccd81ec89839700842 to your computer and use it in GitHub Desktop.
Save zakirsajib/996e6722900552ccd81ec89839700842 to your computer and use it in GitHub Desktop.
Shopify liquid code to split your description/content into two blocks.
<div class="collection_header_block">
{{ collection.description | split: '---' | first }}
</div>
<div class="collection_footer_block">
{{ collection. description | split: '---' | last }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment