Created
February 12, 2015 00:06
-
-
Save camkidman/20b35f398b7a3acf0c8f 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
{% if site.include_project_location and projects_nearby.size > 0 %} | |
<div class="home-popular-project"> | |
<div class="container_12"> | |
<div class="grid_12 wrap-title"> | |
<h2 class="common-title">Projects near {{ current_city }}</h2> | |
<a class="be-fc-orange" href="/{{ locale }}/explore?query={{ current_city }}">View all</a> | |
</div> | |
<div class="clear"></div> | |
<div class="lst-popular-project clearfix"> | |
{% for project in projects_nearby %} | |
{% include 'project_thumb' %} | |
{% capture extra_css %}{% cycle 'group1': '', '<div class="clear clear-2col"></div>', '', '' %}{% endcapture %} | |
{{ extra_css }} | |
{% endfor %} | |
</div> | |
</div> | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment