Created
July 18, 2017 18:00
-
-
Save NickDeckerDevs/78dfdcfcc6ed3739c45a3d31e01488bb to your computer and use it in GitHub Desktop.
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
| {% set queryone = hubdb_table_rows(111111, "&orderBy=last_name") %} | |
| {% set querytwo = hubdb_table_rows(222222, "&orderBy=sandwich") %} | |
| <div class="content"> | |
| {% set counter = 0 %} | |
| {% for row in queryone %} | |
| <div class="col-md-4 resource-container"> | |
| <img class="reponsive" src="{{ row.image.url }}"> | |
| </div> | |
| {% if loop.index == 10 %} | |
| <div class="col-md-4 cta-container"> | |
| <img class="responsive" src="{{ querytwo[counter].image.url }}"> | |
| </div> | |
| {% set counter = counter + 1 %} | |
| {% endif %} | |
| {% endfor %} | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment