Last active
August 29, 2015 13:57
-
-
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…
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
| {% 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