Last active
June 8, 2023 17:22
-
-
Save rharris-listingmirror/44f5efee0f25a83c8f6afa8da6270e85 to your computer and use it in GitHub Desktop.
Advanced Listing Template Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Master Listing Title: | |
{{ title }} | |
Product Features: | |
{% for bullet in bullets %} | |
{{ bullet }} | |
{% endfor %} | |
Product Images: | |
{% for image in images %} | |
<img src="{{ image.big_thumb }}"> | |
{% endfor %} | |
Master Listing Description: | |
{{ description }} | |
Category Specifics: | |
{% for k,v in category_specific.items() %} | |
<b>{{ k }}</b> {{ v }} | |
{% endfor %} | |
Item Condition: | |
<p>{{ parent_listing.condition }}<b> | |
{% if parent_listing.condition_note %} | |
{{ parent_listing.condition_note }} | |
{% endif %} | |
</p> | |
Template Fields: | |
{{ template.about }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment