Skip to content

Instantly share code, notes, and snippets.

@camkidman
Created February 12, 2015 00:06
Show Gist options
  • Save camkidman/20b35f398b7a3acf0c8f to your computer and use it in GitHub Desktop.
Save camkidman/20b35f398b7a3acf0c8f to your computer and use it in GitHub Desktop.
{% 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