This Devvit app (BF Vanguard) does not collect, store, or share any personal data. All actions are performed through Reddit’s official API using Devvit’s built-in authentication.
No external servers or databases are used.
| {module_shoppingcartsummary direction="vertical" collection="cartProducts" template=""} | |
| {%if cartProducts.itemCount != 0%} | |
| {% assign isCleanLean = false %} | |
| {% assign isGoodGreenStuff = false %} | |
| {% for collection in cartProducts.items %} | |
| {% if isCleanLean == false and collection.name contains 'Clean Lean' %} | |
| {% assign isCleanLean = true %} | |
| {% endif %} |
| <div class="recent-product" title="{{name}}"> | |
| {tag_name_nolink} | |
| <span> | |
| <img src='{{smallImage}}?Action=thumbnail&Width=100' /><br/> | |
| <a href="{tag_itemurl_nolink}" onclick="AddToCart({tag_catalogueid},{tag_productid},'',4,'','',true);return false;" class="btn btn-primary">Buy</a> | |
| <a href="{tag_itemurl_nolink}" class="btn btn-default" title="view">View</a> | |
| <br/><br/> | |
| </span> | |
| </div> |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |