Created
May 13, 2012 15:32
-
-
Save gabrielnau/2688941 to your computer and use it in GitHub Desktop.
Locomotive CMS book / Templating / Templating logic / Going further / Snippets
This file contains hidden or 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
<html> | |
<head> | |
<title>Snippet example</title> | |
</head> | |
<body> | |
<header> | |
</header> | |
<div id="content"> | |
<!-- Loop on products --> | |
{% for product in contents.products %} | |
<!-- Include "product_information" snippet with the current product --> | |
{% include 'product_information' with product %} | |
{% endfor %} | |
</div> | |
{% include 'sidebar' %} | |
<footer> | |
</footer> | |
</body> | |
</html> |
This file contains hidden or 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
<div class="product"> | |
{{ product.name }} : {{ product.price }}$ | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment