Skip to content

Instantly share code, notes, and snippets.

@jerzyn
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save jerzyn/9689919 to your computer and use it in GitHub Desktop.

Select an option

Save jerzyn/9689919 to your computer and use it in GitHub Desktop.
We already have our layout and loop accessing the service objects. Now we should decide the way we want to display the service's informations and the signup link. I have decided to divide them into columns with a service description and a Signup link in the bottom. Every column will be a div box with a 'service-column' class and containing all t…
{% for service in provider.services %}
<div class="service-column">
<p>{{ service.name }}</p>
<p>{{ service.description }}</p>
.
.
.
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment